60 lines
1.3 KiB
PHP
Executable File
60 lines
1.3 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Modules\Admin\app\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
use Illuminate\Support\Facades\Config;
|
|
use Laravel\Sanctum\HasApiTokens;
|
|
use Spatie\Permission\Traits\HasRoles;
|
|
use Tymon\JWTAuth\Contracts\JWTSubject;
|
|
use Tymon\JWTAuth\Facades\JWTAuth;
|
|
|
|
class Admin extends Authenticatable implements JWTSubject
|
|
{
|
|
use HasApiTokens, HasFactory, Notifiable;
|
|
use HasRoles;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->table = 'admin';
|
|
$this->guarded = [];
|
|
$this->hidden = [
|
|
'password',
|
|
'forgot_code',
|
|
];
|
|
}
|
|
|
|
public static function getTokenByAuth(): string|null
|
|
{
|
|
try {
|
|
$id = auth('admins')->user()->id;
|
|
return JWTAuth::fromUser(self::find($id));
|
|
} catch (\Throwable $th) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the identifier that will be stored in the subject claim of the JWT.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function getJWTIdentifier()
|
|
{
|
|
return $this->getKey();
|
|
}
|
|
|
|
/**
|
|
* Return a key value array, containing any custom claims to be added to the JWT.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getJWTCustomClaims()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
}
|