12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- $this->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');
- $this->auth();
- Route::get('/home', 'HomeController@index')->name('home');
|