lampuotomatis/app/Models/User.php

81 lines
1.7 KiB
PHP

<?php
namespace App\Models;
// use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Spatie\Permission\Traits\HasRoles;
use Laravel\Sanctum\HasApiTokens;
use Spatie\Permission\Models\Role;
class User extends Authenticatable
{
use HasApiTokens, HasFactory, Notifiable, HasRoles;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
public static function boot()
{
parent::boot();
// static::created(function ($user) {
// $user->preferensi()->create([
// 'data_topbar' => 'light'
// ]);
// });
}
protected $guard_name = 'web';
use HasRoles;
protected $fillable = [
'name',
'email',
'password',
];
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, 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 customer()
{
return $this->hasOne(Customer::class, 'user_id', 'id');
}
public function theme()
{
return $this->hasOne(Theme::class, 'user_id', 'id')->withDefault();
}
public function role()
{
return $this->belongsTo(Role::class);
}
public function driver()
{
return $this->hasOne(Driver::class);
}
}