update for version 1.0.2
This commit is contained in:
16
code/app/Model/kb/Settings.php
Normal file
16
code/app/Model/kb/Settings.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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'];
|
||||
|
||||
}
|
Reference in New Issue
Block a user