*/ protected $fillable = [ 'name', 'email', 'password', 'role', 'venue_id', ]; /** * 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', ]; /** * Check if the user is an admin. * * @return bool */ public function isAdmin() { return $this->role === 'admin'; } /** * Check if the user has a specific role. * * @param string $role * @return bool */ public function hasRole($role) { return $this->role === $role; } /** * Get the venue that the admin belongs to. */ public function venue() { return $this->belongsTo(Venue::class); } }