일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 사업자계좌
- 체당금
- Tutorial
- Python
- cartalyst
- 코로나19
- Bootstrap
- 개인사업자
- blockchain
- reactnative
- auth
- javascript
- php
- Laravel
- 홈택스
- Eclipse
- 코로나
- win32
- Java
- 보정명령
- 소액임금체불
- elasticSearch
- as후기
- 인민공원
- 전자소송
- 당사자표시정정신청서
- Blade
- vue
- Sentinel
- 이더리움
- Today
- Total
목록cartalyst (3)
그냥 사는 이야기
유저를 등록하기 위해 post route를 작성한다. Route 등록 등록을 마치면 root로 갈 수 있도록 작성 RegistrationController public function postRegister(Request $request) { $user = Sentinel::registerAndActivate($request->all()); return redirect('/'); } link 등록 ... {{ csrf_field() }} ... 위처럼 action에 /register를 등록한다. Sentinel User 변경 위의 과정 이후 실제 유저를 등록하면 처음 등록했던 location 속성때문에 에러가 발생한다. Sentinel의 User 클래스를 수정해줘야 한다. config/cartalyst...
Laravel 5.3 Sentinel - Registration Migration 수정 2014_07_02_230147_migration_cartalyst_sentinel.php Schema::create('users', function (Blueprint $table) { ... $table->string('first_name')->nullable(); $table->string('last_name')->nullable(); $table->string('location'); // 추가 $table->timestamps(); ... php artisan migrate:refresh Controller 생성 php artisan make:controller RegistrationController rout..
Sentinel 은 auth 관련 패키지이다. 이것을 Laravel 5.3에서 사용하는 방법을 정리해본다. Sentinel By Cartalyst 검색 Install by Composer composer require cartalyst/sentinel "2.0.*" Integration config/app.php $providers ... Cartalyst\Sentinel\Laravel\SentinelServiceProvider::class, $aliases ... 'Activation' => Cartalyst\Sentinel\Laravel\Facades\Activation::class, 'Reminder' => Cartalyst\Sentinel\Laravel\Facades\Reminder::class,..