Controller method not found - laravel 4
问题 I have this message whine trying to run any controller Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException Controller method not found. I have this Code in my Route file Route::controller("/","HomeController"); Route::controller("users","UsersController"); and this code in my Controller <?php class UsersController extends BaseController { protected $layout = "layouts.main"; public function __construct() { $this->beforeFilter('csrf', array('on' => 'post')); $this->beforeFilter