*/ use HasFactory; use Notifiable; use UserAdjustments; /** * The attributes that are mass assignable. * * @var list */ protected $fillable = [ 'name', 'email', 'password', ]; /** * The attributes that should be hidden for serialization. * * @var list */ protected $hidden = [ 'password', 'remember_token', ]; /** * Can access panel */ public function canAccessPanel(Panel $panel): bool { return true; } }