Files
faveo/app/Model/helpdesk/Utility/Ticket_thread.php
2016-06-13 20:41:55 +05:30

14 lines
292 B
PHP

<?php
namespace App\Model\helpdesk\Utility;
use App\BaseModel;
class Ticket_thread extends BaseModel
{
protected $table = 'ticket_thread';
protected $fillable = [
'id', 'ticket_id', 'ticket_subject', 'ticket_message', 'time', 'poster', 'created_at', 'updated_at',
];
}