]> BookStack Code Mirror - bookstack/blob - app/Permission.php
Found the source of the issue, not sure how to fix
[bookstack] / app / Permission.php
1 <?php
2
3 namespace BookStack;
4
5 use Illuminate\Database\Eloquent\Model;
6
7 class Permission extends Model
8 {
9     /**
10      * The roles that belong to the permission.
11      */
12     public function roles()
13     {
14         return $this->belongsToMany('BookStack\Permissions');
15     }
16 }