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

12 lines
323 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'
];
}