Files
faveo/app/Model/helpdesk/Settings/Company.php
2016-02-19 02:20:12 -05:00

15 lines
327 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',
];
}