Files
famous-ly4-ev/app/Models/User.php
T

66 lines
1.5 KiB
PHP
Raw Normal View History

2026-08-04 21:40:49 +07:00
<?php
namespace App\Models;
// use Illuminate\Contracts\Auth\MustVerifyEmail;
use Database\Factories\UserFactory;
use Filament\Models\Contracts\FilamentUser;
use Filament\Panel;
2026-08-04 21:40:49 +07:00
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
2026-08-04 22:23:54 +07:00
use Laravel\Sanctum\HasApiTokens;
use Spatie\Permission\Traits\HasRoles;
2026-08-04 21:40:49 +07:00
class User extends Authenticatable implements FilamentUser
2026-08-04 21:40:49 +07:00
{
/**
* Roles permitted to sign in to the Filament admin panel.
*
* @var list<string>
*/
public const ADMIN_TIER_ROLES = ['super_admin', 'admin', 'support'];
2026-08-04 21:40:49 +07:00
/** @use HasFactory<UserFactory> */
2026-08-04 22:23:54 +07:00
use HasApiTokens, HasFactory, HasRoles, Notifiable;
2026-08-04 21:40:49 +07:00
public function canAccessPanel(Panel $panel): bool
{
return $this->hasAnyRole(self::ADMIN_TIER_ROLES);
}
2026-08-04 21:40:49 +07:00
/**
* The attributes that are mass assignable.
*
* @var list<string>
*/
protected $fillable = [
'name',
'email',
'password',
];
/**
* The attributes that should be hidden for serialization.
*
* @var list<string>
*/
protected $hidden = [
'password',
'remember_token',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'email_verified_at' => 'datetime',
'password' => 'hashed',
];
}
}