update for version 1.0.1
This commit is contained in:
16
code/app/Model/helpdesk/Settings/Email.php
Normal file
16
code/app/Model/helpdesk/Settings/Email.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php namespace App\Model\helpdesk\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'
|
||||
|
||||
];
|
||||
|
||||
}
|
Reference in New Issue
Block a user