일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 체당금
- Sentinel
- blockchain
- as후기
- 홈택스
- 당사자표시정정신청서
- javascript
- 이더리움
- Laravel
- 인민공원
- Bootstrap
- auth
- 코로나
- vue
- reactnative
- Eclipse
- 전자소송
- win32
- elasticSearch
- 사업자계좌
- 보정명령
- Java
- 개인사업자
- 소액임금체불
- Blade
- php
- Python
- cartalyst
- Tutorial
- 코로나19
- Today
- Total
목록Tutorial (4)
그냥 사는 이야기
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()를 사용한다. 하지만 이것은 그냥..