1if your laravel application running in server/hosting,
2just change DocumentRoot pointing to /path/to/your-laravel-app/public
1Route::get('users', function()
2{
3 $users = User::all();
4
5 return View::make('users')->with('users', $users);
6});