Skip to content

Instantly share code, notes, and snippets.

@nWidart
Created August 25, 2013 17:58
Show Gist options
  • Select an option

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

Select an option

Save nWidart/6335300 to your computer and use it in GitHub Desktop.
Route to restfull controller example
<?php
Route::controller('users', 'UserController');
class UserController extends BaseController {
//http://example.com/users/profile/1
public function getProfile( $id )
{
return "A user with id : $id.";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment