Files
faveo/app/Model/Settings/Company.php
2015-05-01 13:13:01 +05:30

12 lines
294 B
PHP

<?php namespace App\Model\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'
];
}