Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save nWidart/6334183 to your computer and use it in GitHub Desktop.
route closure example
<?php
//http://example.com/users
Route::get('users', function()
{
// Récupère tout les users de la DB
$users = User::all();
// Crée la vue qui liste les users
return View::make('users')->with('users', $users);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment