update v1.0.5

This commit is contained in:
sujitprasad
2016-01-25 20:45:35 +05:30
parent 0b8ebb9c70
commit e7149e34e4
252 changed files with 9008 additions and 3152 deletions

View File

@@ -5,7 +5,7 @@ use Illuminate\Database\Eloquent\Model;
class Alert extends Model {
/* Using alert_notice table */
protected $table = 'alert_notice';
protected $table = 'settings_alert_notice';
/* Set fillable fields in table */
protected $fillable = [

View File

@@ -4,7 +4,7 @@ use Illuminate\Database\Eloquent\Model;
class Company extends Model
{
protected $table = 'company';
protected $table = 'settings_company';
protected $fillable = [
'company_name', 'website', 'phone', 'address', 'landing_page', 'offline_page',
'thank_page', 'logo','use_logo'

View File

@@ -5,7 +5,7 @@ use Illuminate\Database\Eloquent\Model;
class Email extends Model {
/* Using Email table */
protected $table = 'email';
protected $table = 'settings_email';
/* Set fillable fields in table */
protected $fillable = [
'id','template','sys_email','alert_email','admin_email','mta','email_fetching','strip',

View File

@@ -5,7 +5,7 @@ use Illuminate\Database\Eloquent\Model;
class Responder extends Model {
/* Using auto_response table */
protected $table = 'auto_response';
protected $table = 'settings_auto_response';
/* Set fillable fields in table */
protected $fillable = [

View File

@@ -5,7 +5,7 @@ use Illuminate\Database\Eloquent\Model;
class System extends Model {
/* Using System Table */
protected $table = 'system';
protected $table = 'settings_system';
protected $fillable = [
'id','status','url','name','department','page_size','log_level','purge_log','name_format',

View File

@@ -5,7 +5,7 @@ use Illuminate\Database\Eloquent\Model;
class Ticket extends Model {
/* Using Ticket table */
protected $table = 'ticket_settings';
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',