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