Files
faveo/app/Model/helpdesk/Utility/Email.php
2016-02-16 22:42:08 +05:30

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'
];
}