Files
faveo/app/Model/helpdesk/Manage/Help_topic.php
2016-02-16 22:42:08 +05:30

17 lines
422 B
PHP

<?php
namespace App\Model\helpdesk\Manage;
use Illuminate\Database\Eloquent\Model;
class Help_topic extends Model {
protected $table = 'help_topic';
protected $fillable = [
'id', 'topic', 'parent_topic', 'custom_form', 'department', 'ticket_status', 'priority',
'sla_plan', 'thank_page', 'ticket_num_format', 'internal_notes', 'status', 'type', 'auto_assign',
'auto_response'
];
}