Files
faveo/app/Model/kb/Settings.php
2016-01-25 20:45:35 +05:30

17 lines
413 B
PHP

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