This commit is contained in:
2026-03-07 21:17:53 -06:00
parent 11ca220a84
commit 1906ca329c
15 changed files with 135 additions and 17 deletions

View File

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