BookStack/app/Permissions/Models/RolePermission.php

32 lines
707 B
PHP
Raw Permalink Normal View History

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