Files
faveo/app/Model/kb/Settings.php
2016-06-13 20:41:55 +05:30

16 lines
396 B
PHP

<?php
namespace App\Model\kb;
use App\BaseModel;
class Settings extends BaseModel
{
/**
* @param $table, $fillable
*/
protected $table = 'kb_settings';
protected $fillable = ['language', 'dateformat', 'company_name', 'website', 'phone', 'address', 'logo', 'timezone',
'background', 'version', 'pagination', 'port', 'host', 'encryption', 'email', 'password', ];
}