Files
faveo/app/Model/helpdesk/Utility/Priority.php
2016-02-19 02:20:12 -05:00

15 lines
244 B
PHP

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