Guest User

Untitled

a guest
Feb 9th, 2016
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. Route::get('/home', 'HomeController@index');
  2.     Route::get('/articles','ArticleController@index');
  3.     Route::get('/create','ArticleController@create');
  4.     Route::get('/edit/{id}','ArticleController@edit');
  5.     Route::post('/update/{id}','ArticleController@update');
  6.     Route::get('/delete/{id}','ArticleController@delete');
  7.     Route::post('/store','ArticleController@store');
  8.     Route::get('/show/{id}','ArticleController@show');
Add Comment
Please, Sign In to add comment