BookStack/app/Permissions/Models/RolePermission.php
2023-05-17 17:56:55 +01:00

32 lines
707 B
PHP

<?php
namespace BookStack\Permissions\Models;
use BookStack\App\Model;
use BookStack\Users\Models\Role;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
/**
* @property int $id
* @property string $name
* @property string $display_name
*/
class RolePermission extends Model
{
/**
* The roles that belong to the permission.
*/
public function roles(): BelongsToMany
{
return $this->belongsToMany(Role::class, 'permission_role', 'permission_id', 'role_id');
}
/**
* Get the permission object by name.
*/
public static function getByName(string $name): ?RolePermission
{
return static::where('name', '=', $name)->first();
}
}