I\'m searching for a solution ... it\'s getting so frustrating. After a fresh installation of Lumen by Laravel, I simply can\'t access the \"/\" route. When I try to, it thr
The problem was solved by changing the
$app->run();
in /public/index.php to
$request = Illuminate\Http\Request::capture(); $app->run($request);]