mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-30 20:16:46 -04:00
12 lines
206 B
PHP
12 lines
206 B
PHP
<?php
|
|
|
|
namespace Modules\SupportTicket\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class TicketMessageFile extends Model
|
|
{
|
|
protected $table = 'ticket_message_files';
|
|
protected $guarded = [];
|
|
}
|