46 lines
931 B
PHP
46 lines
931 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Models\BaseModel;
|
|
|
|
class AuthorizedUser extends BaseModel
|
|
{
|
|
protected $table = 'authorized_users';
|
|
|
|
// ✅ auto-manage created_at / updated_at
|
|
public $timestamps = true;
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'authorized_user_id',
|
|
'firstname',
|
|
'lastname',
|
|
'phone_number',
|
|
'email',
|
|
'relation_to_user',
|
|
'token',
|
|
'status',
|
|
'created_at',
|
|
'updated_at',
|
|
];
|
|
|
|
protected $casts = [
|
|
'user_id' => 'integer',
|
|
'authorized_user_id' => 'integer',
|
|
];
|
|
|
|
/* =========================
|
|
* Relationships (optional)
|
|
* ========================= */
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class, 'user_id');
|
|
}
|
|
|
|
public function authorizedUser()
|
|
{
|
|
return $this->belongsTo(User::class, 'authorized_user_id');
|
|
}
|
|
} |