33 lines
631 B
PHP
33 lines
631 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class OAuthClient extends Model
|
|
{
|
|
protected $table = 'oauth_clients';
|
|
|
|
protected $guarded = [];
|
|
|
|
protected $fillable = [
|
|
'id',
|
|
'client_id',
|
|
'client_secret',
|
|
'tenant_id',
|
|
'redirect_uris',
|
|
'scopes',
|
|
'is_active',
|
|
];
|
|
|
|
protected $casts = [
|
|
'id' => 'string',
|
|
'tenant_id' => 'integer',
|
|
'scopes' => 'array',
|
|
'redirect_uris' => 'array',
|
|
'is_active' => 'bool',
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
];
|
|
}
|