Getting Started 
Requirements 
Before you get started with this recipe, we assume that you have:
- Installed Lando and gotten familiar with its basics.
 - Initialized a Landofile for your codebase for use with this recipe.
 - Read about the various services, tooling, events and routing Lando offers.
 
Quick Start 
Try out the relevant commands below to spin up a new Landoified vanilla Laravel site.
For the latest version of laravel 9
bash
# Initialize a laravel recipe
lando init \
  --source cwd \
  --recipe laravel \
  --webroot app/public \
  --name my-first-laravel-app
# Start it up
lando start
# Install laravel
lando composer create-project laravel/laravel app
# Optional: install any additional packages
cd app
lando composer require laravel/breeze --dev
lando artisan breeze:install
# List information about this app.
lando info