24 lines
499 B
PHP
24 lines
499 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Illuminate\Auth\Middleware\Authenticate as Middleware;
|
|
|
|
class Authenticate extends Middleware
|
|
{
|
|
/**
|
|
* Get the path the user should be redirected to when they are not authenticated.
|
|
*
|
|
* @param mixed $request Request.
|
|
* @return ?string
|
|
*/
|
|
protected function redirectTo(mixed $request): ?string
|
|
{
|
|
if ($request->expectsJson() === false) {
|
|
return route('login');
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|