Laravel - Basics and Architecture
Given this route in
routes/web.php:
Route::get('/', function () {
return 'Hello, Laravel!';
});
What will you see when you visit http://localhost:8000/ in your browser?