update v1.0.6

This commit is contained in:
sujitprasad
2016-02-16 22:42:08 +05:30
parent e6b579d67b
commit 073a49a8af
587 changed files with 21487 additions and 22766 deletions

View File

@@ -1,16 +1,17 @@
<?php namespace App\Model\helpdesk\Settings;
<?php
namespace App\Model\helpdesk\Settings;
use Illuminate\Database\Eloquent\Model;
class Responder extends Model {
/* Using auto_response table */
/* Using auto_response table */
protected $table = 'settings_auto_response';
/* Set fillable fields in table */
protected $fillable = [
protected $table = 'settings_auto_response';
/* Set fillable fields in table */
protected $fillable = [
'id','new_ticket','agent_new_ticket','submitter','participants','overlimit'
];
'id', 'new_ticket', 'agent_new_ticket', 'submitter', 'participants', 'overlimit'
];
}