edms2023/app/Priority.php

20 lines
286 B
PHP
Raw Normal View History

2023-09-14 20:59:46 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Priority extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'priorities';
protected $fillable = [
'name', 'completion_day',
];
}