Files
faveo/code/app/Model/Utility/Ticket_thread.php
2015-05-01 13:33:56 +05:30

13 lines
287 B
PHP

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