0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-17 10:02:38 +00:00
BookStackApp_BookStack/app/Permission.php

24 lines
478 B
PHP

<?php namespace BookStack;
use Illuminate\Database\Eloquent\Model;
class Permission extends Model
{
/**
* The roles that belong to the permission.
*/
public function roles()
{
return $this->belongsToMany('BookStack\Role');
}
/**
* Get the permission object by name.
* @param $name
* @return mixed
*/
public static function getByName($name)
{
return static::where('name', '=', $name)->first();
}
}