update v1.0.6
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
<?php namespace App\Model\helpdesk\Email;
|
||||
<?php
|
||||
|
||||
namespace App\Model\helpdesk\Email;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Banlist extends Model {
|
||||
|
||||
protected $table = 'banlist';
|
||||
protected $fillable = [
|
||||
'id', 'ban_status', 'email_address', 'internal_notes',
|
||||
];
|
||||
protected $table = 'banlist';
|
||||
protected $fillable = [
|
||||
'id', 'ban_status', 'email_address', 'internal_notes',
|
||||
];
|
||||
|
||||
}
|
||||
|
@@ -1,15 +1,18 @@
|
||||
<?php namespace App\Model\helpdesk\Email;
|
||||
<?php
|
||||
|
||||
namespace App\Model\helpdesk\Email;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Emails extends Model
|
||||
{
|
||||
protected $table = 'emails';
|
||||
protected $fillable = [
|
||||
'email_address', 'email_name', 'department', 'priority', 'help_topic',
|
||||
'user_name', 'password', 'fetching_host', 'fetching_port', 'mailbox_protocol',
|
||||
'folder', 'sending_host', 'sending_port', 'internal_notes', 'auto_response',
|
||||
'fetching_status', 'move_to_folder', 'delete_email', 'do_nothing',
|
||||
'sending_status', 'authentication', 'header_spoofing','imap_config'
|
||||
];
|
||||
}
|
||||
class Emails extends Model {
|
||||
|
||||
protected $table = 'emails';
|
||||
protected $fillable = [
|
||||
'email_address', 'email_name', 'department', 'priority', 'help_topic',
|
||||
'user_name', 'password', 'fetching_host', 'fetching_port', 'mailbox_protocol',
|
||||
'folder', 'sending_host', 'sending_port', 'sending_encryption', 'internal_notes', 'auto_response',
|
||||
'fetching_status', 'move_to_folder', 'delete_email', 'do_nothing',
|
||||
'sending_status', 'authentication', 'header_spoofing', 'imap_config'
|
||||
];
|
||||
|
||||
}
|
||||
|
@@ -1,10 +1,13 @@
|
||||
<?php namespace App\Model\helpdesk\Email;
|
||||
<?php
|
||||
|
||||
namespace App\Model\helpdesk\Email;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Smtp extends Model
|
||||
{
|
||||
public $timestamps = false;
|
||||
protected $table = 'send_mail';
|
||||
protected $fillable = ['driver','port','host','encryption','name','email','password'];
|
||||
}
|
||||
class Smtp extends Model {
|
||||
|
||||
public $timestamps = false;
|
||||
protected $table = 'send_mail';
|
||||
protected $fillable = ['driver', 'port', 'host', 'encryption', 'name', 'email', 'password'];
|
||||
|
||||
}
|
||||
|
@@ -1,12 +1,14 @@
|
||||
<?php namespace App\Model\helpdesk\Email;
|
||||
<?php
|
||||
|
||||
namespace App\Model\helpdesk\Email;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Template extends Model {
|
||||
|
||||
protected $table = 'template';
|
||||
protected $fillable = [
|
||||
'id','name','status','template_set_to_clone','language','internal_note'
|
||||
];
|
||||
protected $table = 'template';
|
||||
protected $fillable = [
|
||||
'id', 'name', 'status', 'template_set_to_clone', 'language', 'internal_note'
|
||||
];
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user