Skip to content
SPONSORS

Getting Started

Requirements

Before you get started with this recipe, we assume that you have:

  1. Installed Lando and gotten familiar with its basics.
  2. Initialized a Landofile for your codebase for use with this recipe.
  3. 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

# 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

# Start it up
lando start

# List information about this app.
lando info