18 lines
266 B
PHP
18 lines
266 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ApikeySetiings extends Model
|
|
{
|
|
protected $table = 'apikey_setiings';
|
|
|
|
protected $fillable = [
|
|
'key',
|
|
'provider',
|
|
'is_active',
|
|
'created_by',
|
|
];
|
|
}
|