2016-04-24 16:54:20 +01:00
|
|
|
<?php namespace BookStack;
|
2015-08-29 15:03:42 +01:00
|
|
|
|
2016-05-01 21:20:50 +01:00
|
|
|
class RolePermission extends Model
|
2015-08-29 15:03:42 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The roles that belong to the permission.
|
|
|
|
*/
|
|
|
|
public function roles()
|
|
|
|
{
|
2018-01-28 16:58:52 +00:00
|
|
|
return $this->belongsToMany(Role::class, 'permission_role', 'permission_id', 'role_id');
|
2015-08-29 15:03:42 +01:00
|
|
|
}
|
2016-02-27 19:24:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the permission object by name.
|
2016-04-24 16:54:20 +01:00
|
|
|
* @param $name
|
2016-02-27 19:24:42 +00:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public static function getByName($name)
|
|
|
|
{
|
|
|
|
return static::where('name', '=', $name)->first();
|
|
|
|
}
|
2015-08-29 15:03:42 +01:00
|
|
|
}
|