Skip to content

Instantly share code, notes, and snippets.

@nWidart
Created August 25, 2013 14:48
Show Gist options
  • Select an option

  • Save nWidart/6334237 to your computer and use it in GitHub Desktop.

Select an option

Save nWidart/6334237 to your computer and use it in GitHub Desktop.
Route to action example
<?php
//http://example.com/users
Route::get('users', 'UserController@index');
//http://example.com/users/1
Route::get('users/{id}', 'UserController@show');
//http://example.com/users
Route::post('users', 'UserController@create');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment