Files
faveo/app/Model/helpdesk/Ticket/Ticket_attachments.php
2016-02-19 02:20:12 -05:00

14 lines
357 B
PHP

<?php
namespace App\Model\helpdesk\Ticket;
use Illuminate\Database\Eloquent\Model;
class Ticket_attachments extends Model
{
protected $table = 'ticket_attachment';
protected $fillable = [
'id', 'thread_id', 'name', 'size', 'type', 'file', 'data', 'poster', 'updated_at', 'created_at',
];
}