I had a project on my machine where I created the laravel via
$ laravel new application
I copied this project to another machine with the perfect xamp like the one of the tool of development, but when I go to the route
Route :: get ('/ test / test', function () { echo 'Hello World'; });
It returns me
(1/1) NotFoundHttpException
in RouteCollection.php (line 179) at RouteCollection-> match (object (Request)) in Router.php (line 548)
But if I access
Route :: get ('/', function () {echo 'Hello World';});
Without the parameters in the url it returns the Hello world.
I've tried everything
composer update
php artisan cache: clear
But nothing works, can anyone help me?
Hugs