update v 1.0.7.5
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\Model\helpdesk\Settings;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use App\BaseModel;
|
||||
|
||||
class Access extends Model
|
||||
class Access extends BaseModel
|
||||
{
|
||||
protected $table = 'access';
|
||||
protected $fillable = [
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\Model\helpdesk\Settings;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use App\BaseModel;
|
||||
|
||||
class Alert extends Model
|
||||
class Alert extends BaseModel
|
||||
{
|
||||
/* Using alert_notice table */
|
||||
|
||||
|
||||
13
app/Model/helpdesk/Settings/CommonSettings.php
Normal file
13
app/Model/helpdesk/Settings/CommonSettings.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Model\helpdesk\Settings;
|
||||
|
||||
use App\BaseModel;
|
||||
|
||||
class CommonSettings extends BaseModel
|
||||
{
|
||||
protected $table = 'common_settings';
|
||||
protected $fillable = [
|
||||
'optional', 'key', 'value', 'created_at', 'updated_at',
|
||||
];
|
||||
}
|
||||
@@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\Model\helpdesk\Settings;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use App\BaseModel;
|
||||
|
||||
class Company extends Model
|
||||
class Company extends BaseModel
|
||||
{
|
||||
protected $table = 'settings_company';
|
||||
protected $fillable = [
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\Model\helpdesk\Settings;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use App\BaseModel;
|
||||
|
||||
class Email extends Model
|
||||
class Email extends BaseModel
|
||||
{
|
||||
/* Using Email table */
|
||||
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\Model\helpdesk\Settings;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use App\BaseModel;
|
||||
|
||||
class Plugin extends Model
|
||||
class Plugin extends BaseModel
|
||||
{
|
||||
protected $table = 'plugins';
|
||||
protected $fillable = ['name', 'path', 'status'];
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\Model\helpdesk\Settings;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use App\BaseModel;
|
||||
|
||||
class Responder extends Model
|
||||
class Responder extends BaseModel
|
||||
{
|
||||
/* Using auto_response table */
|
||||
|
||||
|
||||
17
app/Model/helpdesk/Settings/Security.php
Normal file
17
app/Model/helpdesk/Settings/Security.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Model\helpdesk\Settings;
|
||||
|
||||
use App\BaseModel;
|
||||
|
||||
class Security extends BaseModel
|
||||
{
|
||||
/* Using auto_response table */
|
||||
|
||||
protected $table = 'settings_security';
|
||||
/* Set fillable fields in table */
|
||||
protected $fillable = [
|
||||
|
||||
'id', 'lockout_message', 'backlist_offender', 'backlist_threshold', 'lockout_period', 'days_to_keep_logs',
|
||||
];
|
||||
}
|
||||
@@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\Model\helpdesk\Settings;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use App\BaseModel;
|
||||
|
||||
class System extends Model
|
||||
class System extends BaseModel
|
||||
{
|
||||
/* Using System Table */
|
||||
|
||||
|
||||
@@ -2,16 +2,16 @@
|
||||
|
||||
namespace App\Model\helpdesk\Settings;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use App\BaseModel;
|
||||
|
||||
class Ticket extends Model
|
||||
class Ticket extends BaseModel
|
||||
{
|
||||
/* Using Ticket table */
|
||||
|
||||
protected $table = 'settings_ticket';
|
||||
/* Set fillable fields in table */
|
||||
protected $fillable = [
|
||||
'id', 'num_format', 'num_sequence', 'priority', 'sla', 'help_topic', 'max_open_ticket', 'collision_avoid',
|
||||
'id', 'num_format', 'num_sequence', 'priority', 'sla', 'help_topic', 'max_open_ticket', 'collision_avoid', 'lock_ticket_frequency',
|
||||
'captcha', 'status', 'claim_response', 'assigned_ticket', 'answered_ticket', 'agent_mask', 'html', 'client_update', 'max_file_size',
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user