93 lines
1.9 KiB
PHP
93 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
final class User extends Authenticatable
|
|
{
|
|
/** @use HasFactory<\Database\Factories\UserFactory> */
|
|
use HasFactory, Notifiable;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var list<string>
|
|
*/
|
|
protected $fillable = [
|
|
'name',
|
|
'email',
|
|
'password',
|
|
'azure_id',
|
|
'photo',
|
|
'job_title',
|
|
'department',
|
|
'company_name',
|
|
'phone',
|
|
'role_id',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be hidden for serialization.
|
|
*
|
|
* @var list<string>
|
|
*/
|
|
protected $hidden = [
|
|
'password',
|
|
'remember_token',
|
|
'azure_id',
|
|
];
|
|
|
|
/**
|
|
* Get the attributes that should be cast.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'email_verified_at' => 'datetime',
|
|
'password' => 'hashed',
|
|
'role_id' => 'integer',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the role assigned to this user.
|
|
*/
|
|
public function role(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Role::class);
|
|
}
|
|
|
|
/**
|
|
* Get all sessions for this user.
|
|
*/
|
|
public function sessions(): HasMany
|
|
{
|
|
return $this->hasMany(Session::class);
|
|
}
|
|
|
|
/**
|
|
* Get all screenings for this user.
|
|
*/
|
|
public function screenings(): HasMany
|
|
{
|
|
return $this->hasMany(Screening::class);
|
|
}
|
|
|
|
/**
|
|
* Get all logs for this user.
|
|
*/
|
|
public function logs(): HasMany
|
|
{
|
|
return $this->hasMany(Log::class);
|
|
}
|
|
}
|