opnform/app/Http/Middleware/Authenticate.php

22 lines
483 B
PHP
Raw Normal View History

2022-09-20 19:59:52 +00:00
<?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 \Illuminate\Http\Request $request
* @return string|null
*/
protected function redirectTo($request)
{
if (! $request->expectsJson()) {
2024-01-13 18:57:39 +00:00
return redirect(front_url('login'));
2022-09-20 19:59:52 +00:00
}
}
}