*/ protected $fillable = [ 'name', 'email', 'password', 'id_topic', // tambahkan id_topic jika belum ada ]; /** * The attributes that should be hidden for serialization. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'email_verified_at' => 'datetime', 'password' => 'hashed', ]; /** * Relationship with Topic. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function topic() { return $this->belongsTo(topic::class, 'id_topic', 'id'); } /** * Determine if the user is an administrator. * * @return bool */ public function isAdmin() { // Implement your logic to determine if the user is an administrator. // Example: If the role 'admin' is stored in the 'role' column of the 'users' table. return $this->role === 'admin'; } }