Skip to content

Instantly share code, notes, and snippets.

Created May 10, 2015 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/fe40a8830bd7e29aafd3 to your computer and use it in GitHub Desktop.
Save anonymous/fe40a8830bd7e29aafd3 to your computer and use it in GitHub Desktop.
Route::get('/', function()
{
return View::make('hello');
});
Route::get('user/{name}', function($name){
return 'Hi' .$name ;
});
Route::resource('cat','CatController');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment