Files
faveo/code/app/Model/kb/Settings.php
2015-11-30 16:38:59 +05:30

17 lines
410 B
PHP

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