When using Laravel’s own auth middleware an exception would then get thrown which was being sent to Slack, hmmm. So I modified the original MyAuthMiddleware to use the Auth facade instead of a custom session key. A logout page has also been added.
29 lines
615 B
PHP
29 lines
615 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
namespace App\Http\Middleware;
|
||
|
||
use Closure;
|
||
use Illuminate\Http\Request;
|
||
use Illuminate\Support\Facades\Auth;
|
||
|
||
class MyAuthMiddleware
|
||
{
|
||
/**
|
||
* Check the user is logged in.
|
||
*
|
||
* @param \Illuminate\Http\Request $request
|
||
* @param \Closure $next
|
||
* @return mixed
|
||
*/
|
||
public function handle(Request $request, Closure $next)
|
||
{
|
||
if (Auth::check($request->user()) == false) {
|
||
//they’re not logged in, so send them to login form
|
||
return redirect()->route('login');
|
||
}
|
||
|
||
return $next($request);
|
||
}
|
||
}
|