for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Enomotodev\LaractiveAdmin;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class AdminUser extends Authenticatable
{
use Notifiable;
Illuminate\Notifications\Notifiable
Enomotodev\LaractiveAdmin\AdminUser
$email
$phone_number
/**
* @var array
*/
protected $fillable = [
'email',
'password',
];
protected $hidden = [
'remember_token',
}