BookStack/app/Permissions/Models/RolePermission.php

32 lines
707 B
PHP
Raw Normal View History

2021-06-26 23:23:15 +08:00
<?php
2023-05-18 00:56:55 +08:00
namespace BookStack\Permissions\Models;
2023-05-18 00:56:55 +08:00
use BookStack\App\Model;
use BookStack\Users\Models\Role;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
2015-08-29 22:03:42 +08:00
/**
* @property int $id
* @property string $name
* @property string $display_name
*/
class RolePermission extends Model
2015-08-29 22:03:42 +08:00
{
/**
* The roles that belong to the permission.
*/
public function roles(): BelongsToMany
2015-08-29 22:03:42 +08:00
{
return $this->belongsToMany(Role::class, 'permission_role', 'permission_id', 'role_id');
2015-08-29 22:03:42 +08:00
}
/**
* Get the permission object by name.
*/
public static function getByName(string $name): ?RolePermission
{
return static::where('name', '=', $name)->first();
}
2015-08-29 22:03:42 +08:00
}