Do not understand why I keep getting this error: Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException
问题 I know this is a routing error but I can't find any errors in my routes. // comments Route::get('/comments', 'CommentsController@index'); This is the controller. /** * Display a listing of the resource. * GET /comments * * @return Response */ public function index() { return View::make('comments.create'); } Thank you in advance. It is probably an easy 15 points to someone. 回答1: I think the problem occurs when you try to submit your form. When you use: Route::get('/comments',