Files
faveo/app/Model/helpdesk/Utility/Email.php
2016-06-13 20:41:55 +05:30

18 lines
410 B
PHP

<?php
namespace App\Model\helpdesk\Utility;
use App\BaseModel;
class Email extends BaseModel
{
/* 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',
];
}