mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-22 07:12:36 +00:00
32 lines
707 B
PHP
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();
|
|
}
|
|
}
|