mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-31 05:16:49 -04:00
11 lines
161 B
PHP
11 lines
161 B
PHP
<?php
|
|
|
|
namespace Modules\SupportTicket\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class TicketStatus extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
}
|