12 lines
318 B
PHP
12 lines
318 B
PHP
<?php namespace App\Model\helpdesk\Ticket;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Ticket_Priority extends Model {
|
|
public $timestamps = false;
|
|
protected $table = 'ticket_priority';
|
|
protected $fillable = [
|
|
'priority_id', 'priority', 'priority_desc', 'priority_color', 'priority_urgency', 'ispublic',
|
|
];
|
|
}
|