PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
core
/
setting
/
src
/
Models
<?php namespace Botble\Setting\Models; use Botble\Base\Models\BaseModel; class Setting extends BaseModel { /** * The database table used by the model. * * @var string */ protected $table = 'settings'; /** * @var array */ protected $fillable = [ 'key', 'value', ]; /** * @var bool */ public $timestamps = false; }
[+]
..
[-] Setting.php
[edit]