updated role middleware

This commit is contained in:
2020-03-06 20:52:12 -06:00
parent 9b465eb45f
commit 8962883e69
2 changed files with 45 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace App\Models\User;
use Illuminate\Database\Eloquent\Model;
class AvailableUserRole extends Model
{
//Table Name
protected $table = 'available_user_roles';
//Timestamps
public $timestamps = false;
/**
* The attribute that are mass assignable
*/
protected $fillable = [
'role',
'rank',
'description',
];
}