그냥 사는 이야기

Laravel 5.3 Sentinel - Setting Up 본문

Development/Web

Laravel 5.3 Sentinel - Setting Up

없다캐라 2020. 1. 20. 19:32
반응형

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,
'Sentinel'   => Cartalyst\Sentinel\Laravel\Facades\Sentinel::class,

Assets

php artisan vendor:publish --provider="Cartalyst\Sentinel\Laravel\SentinelServiceProvider"

이후 config/cartalyst.sentinel.php 와 migration file 추가

Migrations

php artisan migrate

이 때 default user migration이 있었다면 rollback 후 다시 할 것

Comments