BookStack/app/Permissions/Models/RolePermission.php

32 lines
707 B
PHP
Raw Normal View History

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