mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 07:00:08 +00:00
b29290913a
Co-authored-by: Shift <shift@laravelshift.com>
20 lines
437 B
PHP
20 lines
437 B
PHP
<?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
|
|
{
|
|
if (! $request->expectsJson()) {
|
|
return route('admin/login');
|
|
}
|
|
}
|
|
}
|