You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
393 B
24 lines
393 B
3 years ago
|
<?php
|
||
|
|
||
|
namespace App\Model;
|
||
|
|
||
|
use App\Traits\Log;
|
||
|
|
||
|
class ConfigModel extends Model {
|
||
|
|
||
|
use Log;
|
||
|
|
||
|
protected $table = 'config';
|
||
|
protected $sort = 'key';
|
||
|
|
||
|
public $title = "Config";
|
||
|
|
||
|
// Attribute rules
|
||
|
// Name | Type | Required | Filtered
|
||
|
public $rules = [
|
||
|
["key", "text", 1, 0],
|
||
|
["value", "text", 0, 0],
|
||
|
["log_id", "text", 1, 1],
|
||
|
];
|
||
|
}
|