12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace App;
- use Illuminate\Auth\MustVerifyEmail;
- use Illuminate\Notifications\Notifiable;
- use Illuminate\Foundation\Auth\User as Authenticatable;
- use Illuminate\Contracts\Auth\MustVerifyEmail as MustVerifyEmailContract;
- class User extends Authenticatable
- {
- use Notifiable;
-
- protected $fillable = [
- 'name', 'email', 'password',
- ];
-
- protected $hidden = [
- 'password', 'remember_token',
- ];
- }
|