for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Middleware;
use Illuminate\Auth\Middleware\Authenticate as Middleware;
class Authenticate extends Middleware
{
/**
* {@inheritDoc}
*/
protected function redirectTo($request)
if (! $request->expectsJson()) {
return route('login');
}