일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Python
- auth
- 코로나19
- 전자소송
- 당사자표시정정신청서
- 소액임금체불
- blockchain
- cartalyst
- Tutorial
- 이더리움
- Blade
- 코로나
- Sentinel
- javascript
- 사업자계좌
- Java
- as후기
- Laravel
- vue
- 인민공원
- Eclipse
- php
- elasticSearch
- win32
- 보정명령
- Bootstrap
- reactnative
- 개인사업자
- 홈택스
- 체당금
- Today
- Total
목록분류 전체보기 (187)
그냥 사는 이야기
윈도우즈에서 EC2에 접속하기 위해서는 WSL을 통하거나 전통적인 Putty를 사용하여 접속할 수 있다. AWS의 EC2도 보안키파일을 보통은 pem파일로 하므로 둘 다 가장 흔한 방식으로 접속하는 방법을 기록으로 남겨둔다. Putty로 접속하기 위해서는 Putty 설치 PuttyGen으로 프라이빗키 변환 Putty 접속 Putty 및 Puttygen 구하기 putty설치형이 아닌 portable 형으로 exe 파일로 직접 실행하도록 하였다. Putty Download Page 자신의 OS에 맞는 binary를 다운로드하면 되는데 난 둘 다 64bit로 구했다. pem파일 프라이빗 키 변환 Putty가 pem파일을 지원하지 않으므로 ppk파일로 변환한 후 사용하여야 한다. 변환하기 위해서는 PuttyGe..
Posts php artisan make:migration create_posts_table --create=posts database/migrations/create_posts_table.php public function up() { Schema::create('posts', function (Blueprint $table) { $table->increments('id'); $table->integer('user_id'); // added $table->text('content'); // added $table->timestamps(); }); } Migration php artisan migrate
Profile View 추가 views/user 디렉토리 추가 profile.blade.php @extends('layouts.app') @section('content') {{ $user->name }} {{ $user->email }} {{ $user->dob }} ({{ Carbon\Carbon::createFromFormat('Y-m-d', $user->dob)->age }} years old) Follow @endsection ProfileController.php public function profile($username) { $user = User::whereUsername($username)->first(); // User::where('username', $username); // Us..
ProfileController 추가 ProfileController.php php artisan make:controller ProfileController Route 추가 web.php Route::get('/profile/{username}', 'ProfileController@profile'); ProfileController.php use App\User; ... public function profile($username) { $user = User::whereUsername($username)->first(); // User::where('username', $username); // User::where('username', '=', $username); return $user->email..
Social Network Login with Username email login 대신 새로 추가한 username으로 로그인 구현 username view login.blade.php Username @if ($errors->has('username')) {{ $errors->first('username') }} @endif email -> username type -> text E-Mail Address -> Username login 관련 패키지 변경 vendor를 건드리는 방법 Illuminate/Foundation/Auth/AuthenticatesUsers.php 이곳에서 보면 login() 내에 credentials()를 체크하는 곳을 보면 username()를 사용한다. 하지만 이것은 그냥..
Social Network Custom Registration 우선 라라벨 프로젝트를 생성 Migrate php artisan migrate Auth php artisan make:auth 유저 항목 customizing public function up() { Schema::create('users', function (Blueprint $table) { $table->increments('id'); $table->string('username', 32); // 추가 $table->date('dob'); // 추가 $table->string('name'); $table->string('email')->unique(); $table->string('password'); $table->rememberTok..
Pagination 게시판에서 보면 1, 2, 3 page와 prev, next 링크가 존재하는 형태 Pagination 추가 UserController public function index() { $users = User::paginate(10); // $users = User::simplePaginate(10); // 숫자가 없는 형태 return view('admin.users.index', compact('users')); } index.blade.php // 유저 list ... {{ $users->links() }} Total 그리고 현재 count 보여주기 index.blade.php {{ $users->total() }} total users In this page ({{ $users->..
월급을 떼였다. 10년 넘게 직장 생활해보고 몇몇 회사를 다녀봤지만 이런 경우는 처음이었다. 그리고 회사는 문을 닫았고 현재 나는 프리랜서로 일하고 있다. 체당금을 받는 절차 체당금을 받기 위해 무엇을 해야 하는가는 고용노동부 법률구조공단 소송 근로복지공단 소액체당금 청구 크게 위의 절차를 거친다. 그중 난 3번을 대법원 전자소송으로 했었다. (2020.02.06 전자소송때 무엇을 그리고 어떻게 작성하는가는 다른 포스트에 기록해둠) 소송을 거쳐 최종 이행권고 결정 서류를 받고 4번의 체당금을 청구해야 한다. 선릉역의 근로복지공단을 들러서 전자소송에서 받은 이행권고결정 체불임금 사업주 확인서 신분증 이렇게 3가지를 준비해서 갔다. 그런데 이행권고 결정 서류가 정본이 아니어서 제출을 할 수 없었다. 아~ 정..