get('/', 'PostsController@index'); $this->post('/posts', 'PostsController@store'); $this->get('/posts/create', 'PostsController@create'); $this->get('/posts/{post}', 'PostsController@show'); $this->post('/posts/{post}/comments', 'CommentsController@store');