Skip to content

Instantly share code, notes, and snippets.

@nWidart
Created August 25, 2013 18:04
Show Gist options
  • Select an option

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

Select an option

Save nWidart/6335333 to your computer and use it in GitHub Desktop.
Route to resource controller example
<?php
Route::resource('users', 'UserController');
class UserController extends BaseController {
// http://example.com/users
public function index()
{
return "Tous les utilisateurs!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment