You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
23 lines
572 B
23 lines
572 B
<?php |
|
|
|
namespace App\Http\Middleware; |
|
|
|
use Closure; |
|
use Illuminate\Http\Request; |
|
use Symfony\Component\HttpFoundation\Response; |
|
|
|
class UserAuthMiddleware |
|
{ |
|
/** |
|
* Handle an incoming request. |
|
* |
|
* @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next |
|
*/ |
|
public function handle(Request $request, Closure $next): Response |
|
{ |
|
if (auth()->guest()) { |
|
return redirect('/login')->withErrors(["You must be loged in to access this page."]); |
|
} |
|
return $next($request); |
|
} |
|
}
|
|
|