Files
faveo/code/app/Model/helpdesk/Settings/Company.php
2015-10-23 14:15:29 +05:30

12 lines
314 B
PHP

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