When I add this route in the routes.php file:
routes.php
Route::get('postagem', function (){
return "teste";
});
Route::get('/', function(){
return View::make('hello');
});
Displays this error:
Fatal error: Class 'Route' not found in C: \ wamp \ www \ laravel \ app \ routes.php on line 13
Use Laravel 4.2, Wamp Server. I have done several commands with the composer to update, but without success.