Files
faveo/app/Model/helpdesk/Utility/Priority.php
2015-12-22 14:09:23 +05:30

16 lines
231 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'
];
}