edms/app/WorkflowType.php

20 lines
307 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class WorkflowType extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'workflow_types';
protected $fillable = [
'name', 'assigned_deadline', 'status',
];
}