Files
faveo/code/app/Model/Settings/Email.php
2015-05-01 13:33:56 +05:30

17 lines
385 B
PHP

<?php namespace App\Model\Settings;
use Illuminate\Database\Eloquent\Model;
class Email extends Model {
/* Using Email table */
protected $table = 'email';
/* Set fillable fields in table */
protected $fillable = [
'id','template','sys_email','alert_email','admin_email','mta','email_fetching','strip',
'separator','all_emails','email_collaborator','attachment'
];
}