Laravel theorytheory 0/50 · 0%
Fundamentals · easy

1. Installing Laravel & Artisan

Getting started with a new Laravel app.

Laravel is installed via Composer (composer create-project laravel/laravel) or the Laravel installer CLI. Once installed, the 'artisan' command-line tool is the primary interface for scaffolding code, running migrations, and managing the app. Running 'php artisan serve' boots a local development server, and 'php artisan list' shows all available commands.

Check your understanding

  1. 1. Which command starts Laravel's local dev server?

  2. 2. What tool is used to create a new Laravel project?