EVOLUTION-MANAGER
Edit File: PermissionMiddleware.php
<?php namespace Spatie\Permission\Middlewares; use Closure; use Spatie\Permission\Exceptions\UnauthorizedException; class PermissionMiddleware { public function handle($request, Closure $next, $permission) { if (app('auth')->guest()) { throw UnauthorizedException::notLoggedIn(); } $permissions = is_array($permission) ? $permission : explode('|', $permission); foreach ($permissions as $permission) { if (app('auth')->user()->can($permission)) { return $next($request); } } throw UnauthorizedException::forPermissions($permissions); } }