Controller Route not found in Laravel 4
问题 I am in the process of migrating from L3 to L4. When registering the HomeController controller that came with the default L4 installation, trying to go to the page www.domain.com/home gives me a ResourceNotFound exception. I did a composer dumpautoload but that did not help. Did I miss out an additional step? routes.php Route::controller('home', 'HomeController'); controllers/HomeController.php <?php class HomeController extends BaseController { public function showWelcome() { return View: