Files
faveo/app/Model/helpdesk/Utility/Email.php
2016-02-19 02:20:12 -05:00

18 lines
427 B
PHP

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