32 lines
		
	
	
		
			707 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			707 B
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
 | 
						|
namespace BookStack\Permissions\Models;
 | 
						|
 | 
						|
use BookStack\App\Model;
 | 
						|
use BookStack\Users\Models\Role;
 | 
						|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
 | 
						|
 | 
						|
/**
 | 
						|
 * @property int $id
 | 
						|
 * @property string $name
 | 
						|
 * @property string $display_name
 | 
						|
 */
 | 
						|
class RolePermission extends Model
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * The roles that belong to the permission.
 | 
						|
     */
 | 
						|
    public function roles(): BelongsToMany
 | 
						|
    {
 | 
						|
        return $this->belongsToMany(Role::class, 'permission_role', 'permission_id', 'role_id');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the permission object by name.
 | 
						|
     */
 | 
						|
    public static function getByName(string $name): ?RolePermission
 | 
						|
    {
 | 
						|
        return static::where('name', '=', $name)->first();
 | 
						|
    }
 | 
						|
}
 |