2026-06-23 10:10:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Auth\Middleware\Authenticate as Middleware;
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
|
|
class Authenticate extends Middleware
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Get the path the user should be redirected to when they are not authenticated.
|
|
|
|
|
*/
|
|
|
|
|
protected function redirectTo(Request $request): ?string
|
|
|
|
|
{
|
2026-07-18 08:42:33 +00:00
|
|
|
return null;
|
2026-06-23 10:10:28 +00:00
|
|
|
}
|
|
|
|
|
}
|