MIF_E31231226/app/Models/User.php

43 lines
844 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class User extends Authenticatable
{
use HasFactory, Notifiable;
protected $fillable = [
'name',
'email',
'password',
'role', // ← tambah ini
];
protected $hidden = [
'password',
'remember_token',
];
protected function casts(): array
{
return [
'email_verified_at' => 'datetime',
'password' => 'hashed',
];
}
// ← tambah 2 method ini di bawah casts()
public function isAdmin(): bool
{
return $this->role === 'admin';
}
public function isStaff(): bool
{
return $this->role === 'staff';
}
}