Files
faveo/app/Model/helpdesk/Utility/Priority.php
2016-06-13 20:41:55 +05:30

15 lines
227 B
PHP

<?php
namespace App\Model\helpdesk\Utility;
use App\BaseModel;
class Priority extends BaseModel
{
public $timestamps = false;
protected $table = 'priority';
protected $fillable = [
'id', 'name',
];
}