*/ 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; } /** * Get the avatar URL for the user. */ public function getFilamentAvatarUrl(): ?string { return '/assets/images/avatar.png'; } }