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