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

79 lines
1.9 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\Database\Eloquent\Relations\HasMany;
2026-08-04 21:40:49 +07:00
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
2026-08-04 22:23:54 +07:00
use Laravel\Sanctum\HasApiTokens;
use Modules\Booking\Models\Booking;
2026-08-04 22:23:54 +07:00
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);
}
/**
* A customer's bookings (domain.md §1) — inverse of Booking::user().
* Staff (admin-tier role) users don't create bookings, so this is
* effectively customer-only in practice, but not enforced here.
*/
public function bookings(): HasMany
{
return $this->hasMany(Booking::class);
}
2026-08-04 21:40:49 +07:00
/**
* The attributes that are mass assignable.
*
* @var list<string>
*/
protected $fillable = [
'name',
'email',
2026-08-30 14:53:18 +07:00
'phone',
2026-08-04 21:40:49 +07:00
'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',
];
}
}