//laravel server command
php artisan serve
php artisan serve // will use localhost and 8000 port by default
if your laravel application running in server/hosting,
just change DocumentRoot pointing to /path/to/your-laravel-app/public
Route::get('users', function()
{
$users = User::all();
return View::make('users')->with('users', $users);
});