Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
public_html
/
admin
/
app
/
Models
/
Filename :
UserRolePermission.php
back
Copy
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Foundation\Auth\User as Authenticatable; class UserRolePermission extends Authenticatable { use SoftDeletes; protected $table = 'user_role_permissions'; protected $primaryKey = 'user_role_permission_id'; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'user_role_permission_id', 'user_role_id', 'permission_id', 'created_at', 'updated_at', 'deleted_at' ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'deleted_at' ]; }