Files
faveo/app/Model/Settings/Responder.php
2015-05-01 13:13:01 +05:30

17 lines
335 B
PHP

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