BookStack/app/Auth/Permissions/RolePermission.php

32 lines
693 B
PHP
Raw Normal View History

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