*/ use HasFactory, Notifiable; protected $fillable = ['name', 'email', 'password', 'role', 'rt_id']; protected $hidden = ['password', 'remember_token']; protected function casts(): array { return [ 'email_verified_at' => 'datetime', 'password' => 'hashed', ]; } public function rt() { return $this->belongsTo(RT::class); } public function calonPenerimas() { return $this->hasMany(CalonPenerima::class); } public function isAdmin() { return $this->role === 'admin'; } public function isRT() { return $this->role === 'rt'; } }