pelayanan_pelatihan/app/Http/Middleware/Authenticate.php
jilhanhaura 36b6143d0f login
2023-10-09 14:10:01 +07:00

17 lines
408 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
{
return $request->expectsJson() ? null : route('login');
}
}