X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/platform/core/acl/src/Models
home
/
gfecatvj
/
sites
/
realesbar
/
platform
/
core
/
acl
/
src
/
Models
/
📁
..
📄
Activation.php
(418 B)
📄
Role.php
(1.95 KB)
📄
User.php
(5.29 KB)
📄
UserMeta.php
(1.48 KB)
Editing: Role.php
<?php namespace Botble\ACL\Models; use Botble\ACL\Traits\PermissionTrait; use Botble\Base\Models\BaseModel; use Exception; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\BelongsToMany; class Role extends BaseModel { use PermissionTrait; /** * The database table used by the model. * * @var string */ protected $table = 'roles'; /** * The date fields for the model.clear * * @var array */ protected $dates = [ 'created_at', 'updated_at', ]; /** * @var array */ protected $fillable = [ 'name', 'slug', 'permissions', 'description', 'is_default', 'created_by', 'updated_by', ]; /** * @var array */ protected $casts = [ 'permissions' => 'json', ]; /** * @param string $value * @return array */ public function getPermissionsAttribute($value) { try { return json_decode($value, true) ?: []; } catch (Exception $exception) { return []; } } /** * Set mutator for the "permissions" attribute. * * @param array $permissions * @return void */ public function setPermissionsAttribute(array $permissions) { $this->attributes['permissions'] = $permissions ? json_encode($permissions) : ''; } /** * {@inheritDoc} */ public function delete() { if ($this->exists) { $this->users()->detach(); } return parent::delete(); } /** * @return BelongsToMany */ public function users() { return $this->belongsToMany(User::class, 'role_users', 'role_id', 'user_id')->withTimestamps(); } /** * @return BelongsTo */ public function author() { return $this->belongsTo(User::class, 'created_by')->withDefault(); } }
Upload File
Create Folder