Files
faveo/app/Model/helpdesk/Settings/Company.php
2016-02-16 22:42:08 +05:30

16 lines
328 B
PHP

<?php
namespace App\Model\helpdesk\Settings;
use Illuminate\Database\Eloquent\Model;
class Company extends Model {
protected $table = 'settings_company';
protected $fillable = [
'company_name', 'website', 'phone', 'address', 'landing_page', 'offline_page',
'thank_page', 'logo', 'use_logo'
];
}