1 | <?php |
||
2 | |||
3 | namespace Enomotodev\LaractiveAdmin; |
||
4 | |||
5 | use Illuminate\Notifications\Notifiable; |
||
6 | use Illuminate\Foundation\Auth\User as Authenticatable; |
||
7 | |||
8 | class AdminUser extends Authenticatable |
||
9 | { |
||
10 | use Notifiable; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
11 | |||
12 | /** |
||
13 | * @var array |
||
14 | */ |
||
15 | protected $fillable = [ |
||
16 | 'email', |
||
17 | 'password', |
||
18 | ]; |
||
19 | |||
20 | /** |
||
21 | * @var array |
||
22 | */ |
||
23 | protected $hidden = [ |
||
24 | 'password', |
||
25 | 'remember_token', |
||
26 | ]; |
||
27 | } |
||
28 |