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