67 lines
1.5 KiB
PHP
67 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Spatie\MediaLibrary\HasMedia;
|
|
use Spatie\MediaLibrary\InteractsWithMedia;
|
|
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
|
use Laravel\Sanctum\HasApiTokens;
|
|
use App\Notifications\VerifyEmailNotification;
|
|
|
|
class User extends Authenticatable implements HasMedia, MustVerifyEmail
|
|
{
|
|
use HasApiTokens, HasFactory, Notifiable, InteractsWithMedia;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = [
|
|
'name',
|
|
'email',
|
|
'password',
|
|
'role',
|
|
'status',
|
|
'photo',
|
|
'google_id',
|
|
'social_links',
|
|
'email_verified_at',
|
|
'instructor_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 = [
|
|
'social_links' => 'array',
|
|
'status' => 'integer',
|
|
];
|
|
|
|
public function instructor(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Instructor::class);
|
|
}
|
|
|
|
public function sendEmailVerificationNotification()
|
|
{
|
|
$this->notify(new VerifyEmailNotification);
|
|
}
|
|
}
|