Creating a Laravel project

Make sure that your local machine has PHP and Composer installed. In addition, we recommend installing Node.

After you have installed PHP and Composer, you may create a new Laravel project via Composer's create-project command:

composer create-project "laravel/laravel:^10.0" example-app

If this does not work, we have provided a ready-to-use Laravel project for you to download here.

Once the project has been created, start Laravel's local development server using Laravel Artisan's serve command:

cd example-app
php artisan serve

Once you have started the Artisan development server, your application will be accessible in your web browser at http://localhost:8000.