13 lines
190 B
PHP
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'
|
|
];
|
|
|
|
}
|