반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Laravel
- win32
- Bootstrap
- vue
- 코로나19
- as후기
- 보정명령
- cartalyst
- 소액임금체불
- 개인사업자
- elasticSearch
- 이더리움
- 코로나
- reactnative
- 사업자계좌
- Blade
- php
- blockchain
- 체당금
- auth
- Tutorial
- Sentinel
- 인민공원
- Python
- 당사자표시정정신청서
- 전자소송
- Java
- Eclipse
- javascript
- 홈택스
Archives
- Today
- Total
그냥 사는 이야기
Laravel 5.3 Sentinel - Create User 본문
반응형
유저를 등록하기 위해 post route를 작성한다.
Route 등록
등록을 마치면 root로 갈 수 있도록 작성
RegistrationController
public function postRegister(Request $request)
{
$user = Sentinel::registerAndActivate($request->all());
return redirect('/');
}
link 등록
...
<div class="panel-body">
<form action="/register" method="POST">
{{ csrf_field() }}
...
위처럼 action에 /register를 등록한다.
Sentinel User 변경
위의 과정 이후 실제 유저를 등록하면 처음 등록했던 location 속성때문에 에러가 발생한다. Sentinel의 User 클래스를 수정해줘야 한다.
config/cartalyst.sentinel.php
...
'users' => [
'model' => 'Cartalyst\Sentinel\Users\EloquentUser',
],
...
부분을 확인할 수 있다. 저 경로대로 EloquentUser 모델을 커스터마이징을 해줘야 한다.
...
protected $fillable = [
'email',
'password',
'last_name',
'first_name',
'permissions',
'location', // 추가
];
...
'Development > Web' 카테고리의 다른 글
Laravel 5.3 Sentinel - Menu (0) | 2020.01.21 |
---|---|
Laravel 5.3 Sentinel - Login (0) | 2020.01.21 |
Laravel 5.3 Sentinel - Registration (0) | 2020.01.20 |
Laravel 5.3 Sentinel - Setting Up (0) | 2020.01.20 |
Laravel 5.3 Tutorial for Beginner - Social Network (CRUD) Migrations (0) | 2020.01.19 |
Comments