Skip to content

Instantly share code, notes, and snippets.

@moughamir
Created May 27, 2015 12:28
Show Gist options
  • Save moughamir/445073923864013b3586 to your computer and use it in GitHub Desktop.
Save moughamir/445073923864013b3586 to your computer and use it in GitHub Desktop.
laravel Route Exemple
Route::get('about', 'PagesController@about');
Route::get('contact','PagesController@contact');
Route::get('articles','ArticlesController@index');
Route::get('articles/{id}','ArticlesController@show');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment