Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
spatie
/
laravel-permission
/
src
/
Contracts
Location:
/home/zoteqbgb/public_html/vendor/spatie/laravel-permission/src/Contracts
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: Permission.php
<?php namespace Spatie\Permission\Contracts; use Illuminate\Database\Eloquent\Relations\BelongsToMany; interface Permission { /** * A permission can be applied to roles. */ public function roles(): BelongsToMany; /** * Find a permission by its name. * * @param string|null $guardName * * @throws \Spatie\Permission\Exceptions\PermissionDoesNotExist */ public static function findByName(string $name, $guardName): self; /** * Find a permission by its id. * * @param string|null $guardName * * @throws \Spatie\Permission\Exceptions\PermissionDoesNotExist */ public static function findById(int $id, $guardName): self; /** * Find or Create a permission by its name and guard name. * * @param string|null $guardName */ public static function findOrCreate(string $name, $guardName): self; }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
Permission.php
920 bytes
0644
2023-10-25 10:12
âï¸
ðï¸
Rename
Role.php
1,141 bytes
0644
2023-10-25 10:12
âï¸
ðï¸
Rename
Wildcard.php
178 bytes
0644
2023-10-25 10:12
âï¸
ðï¸
Rename
Chang
Apply