file-management-system/app/Models/User.php

70 lines
1.5 KiB
PHP
Raw Permalink Normal View History

2023-09-26 09:51:59 +00:00
<?php
namespace App\Models;
2023-11-03 09:12:15 +00:00
use Illuminate\Contracts\Auth\MustVerifyEmail;
2023-09-26 09:51:59 +00:00
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Sanctum\HasApiTokens;
use Spatie\Permission\Traits\HasRoles;
2023-11-03 09:12:15 +00:00
class User extends Authenticatable implements MustVerifyEmail
2023-09-26 09:51:59 +00:00
{
use HasApiTokens, HasFactory, Notifiable;
use HasRoles;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
'email',
'password',
'last_login_at',
'last_login_ip',
'profile_photo_path',
];
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, string>
*/
protected $hidden = [
'password',
'remember_token',
];
/**
* The attributes that should be cast.
*
* @var array<string, string>
*/
protected $casts = [
'email_verified_at' => 'datetime',
'last_login_at' => 'datetime',
];
public function getProfilePhotoUrlAttribute()
{
if ($this->profile_photo_path) {
return asset('storage/' . $this->profile_photo_path);
}
return $this->profile_photo_path;
}
2023-11-03 09:12:15 +00:00
public function addresses()
{
return $this->hasMany(Address::class);
}
public function getDefaultAddressAttribute()
{
return $this->addresses?->first();
}
2023-09-26 09:51:59 +00:00
}