//laravel server command php artisan serve
php artisan serve // will use localhost and 8000 port by default
Route::get('users', function() { $users = User::all(); return View::make('users')->with('users', $users); });