Files
w4rpservices/app/Models/User/AvailableUserRole.php

27 lines
435 B
PHP

<?php
namespace App\Models\User;
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',
];
}