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(); } }