23 lines
316 B
PHP
23 lines
316 B
PHP
<?php
|
|
|
|
namespace App\Models\Config;
|
|
|
|
use App\Core\Model;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
/**
|
|
* 配置
|
|
*/
|
|
class Config extends Model
|
|
{
|
|
protected $table = 'configs';
|
|
|
|
protected $primaryKey = 'name';
|
|
|
|
public $incrementing = false;
|
|
|
|
protected $casts = [
|
|
'value' => 'array',
|
|
];
|
|
}
|