����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 18.217.162.18 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/thread-self/root/home/builderbox/public_html/common/Auth/Roles/ |
Upload File : |
<?php namespace Common\Auth\Roles; use App\User; use Carbon\Carbon; use Common\Auth\Permissions\Permission; use Common\Auth\Permissions\Traits\HasPermissionsRelation; use Eloquent; use Illuminate\Database\Eloquent\Collection; use Illuminate\Database\Eloquent\Model; /** * Common\Auth\Roles\Role * * @property integer $id * @property string $name * @property Carbon $created_at * @property Carbon $updated_at * @property boolean $default * @property-read Collection|User[] $users * @property-read Collection|Permission[] $permissions * @mixin Eloquent * @property int $guests * @property string|null $legacy_permissions * @property string|null $description * @property string $type * @property int $internal * @property-read int|null $permissions_count * @property-read int|null $users_count * @method static \Illuminate\Database\Eloquent\Builder|Role newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|Role newQuery() * @method static \Illuminate\Database\Eloquent\Builder|Role query() */ class Role extends Model { use HasPermissionsRelation; /** * @var array */ protected $guarded = ['id']; /** * @var array */ protected $hidden = ['pivot', 'legacy_permissions']; /** * @var array */ protected $casts = ['id' => 'integer', 'default' => 'boolean', 'guests' => 'boolean']; /** * Get default role for assigning to new users. * * @return Role|null */ public function getDefaultRole() { return $this->where('default', 1)->first(); } public function users() { return $this->belongsToMany(User::class, 'user_role') ->withPivot('created_at'); } }