Files
faveo/app/Model/Utility/Priority.php
2015-05-01 13:13:01 +05:30

13 lines
190 B
PHP

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