Files
w4rpservices/app/Models/UserPermission.php
T
2018-12-01 21:08:29 -06:00

30 lines
480 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class UserPermission extends Model
{
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'character_id',
'permission',
];
protected $table = 'user_permissions';
/**
* The attributes that should be hidden for arrays
*
* @var array
*/
protected $hidden = [];
protected $guarded = [];
}