testing
This commit is contained in:
31
app/Models/Auth/AvailableUserPermission.php
Normal file
31
app/Models/Auth/AvailableUserPermission.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Auth;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class AvailableUserPermission extends Model
|
||||
{
|
||||
/**
|
||||
* Database Table
|
||||
*
|
||||
*/
|
||||
protected $table = 'available_user_permissions';
|
||||
|
||||
/**
|
||||
* Primary Key
|
||||
*/
|
||||
public $primaryKey = 'id';
|
||||
|
||||
/**
|
||||
* Timestamps enabled for the rows
|
||||
*/
|
||||
public $timestamps = false;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable
|
||||
*/
|
||||
protected $fillable = [
|
||||
'permission',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user