I\'ve just installed Lumen on Windows and unfortunately I\'m getting the following error:
NotFoundHttpException in Application.php line 1093: in Application
On your index.php file. Change this line
index.php
$app->run();
Into:
$app->run($app->request);
Using make method is faster than accessing class alias via array access.
make
This one also works:
$app->run( $app->make('request') );