| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | 
							- <?php
 - 
 - namespace App\Models;
 - 
 - // use Illuminate\Contracts\Auth\MustVerifyEmail;
 - use Filament\Models\Contracts\FilamentUser;
 - use Filament\Panel;
 - use Illuminate\Database\Eloquent\Factories\HasFactory;
 - use Illuminate\Foundation\Auth\User as Authenticatable;
 - use Illuminate\Notifications\Notifiable;
 - use Spatie\Permission\Traits\HasRoles;
 - 
 - class User extends Authenticatable implements FilamentUser
 - {
 -     /** @use HasFactory<\Database\Factories\UserFactory> */
 -     use HasFactory, Notifiable, HasRoles;
 - 
 -     /**
 -      * 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',
 -         ];
 -     }
 - 
 -     public function canAccessPanel(Panel $panel): bool
 -     {
 -         // return str_ends_with($this->email, '@yourdomain.com') && $this->hasVerifiedEmail();
 -         return true;
 -     }
 - }
 
 
  |