Issues (13)

src/AdminUser.php (1 issue)

Severity
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
The trait Illuminate\Notifications\Notifiable requires some properties which are not provided by Enomotodev\LaractiveAdmin\AdminUser: $email, $phone_number
Loading history...
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