Usermanager/Entities/User.php
Daeng Deni Mardaeni b153558a25 update migrations
2023-09-27 15:06:08 +07:00

64 lines
1.6 KiB
PHP

<?php
namespace Modules\Usermanager\Entities;
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;
use Wildside\Userstamps\Userstamps;
class User extends Authenticatable
{
use HasApiTokens, HasFactory, Notifiable, Userstamps;
use HasRoles;
protected $guard_name = ['web', 'api'];
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
'email',
'password',
'last_login_at',
'last_login_ip',
'profile_photo_path',
'direktorat_id',
'sub_direktorat_id',
];
/**
* 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;
}
}