Advertisement
Google Ad Slot: content-top
Laravel Installation
Install Laravel with XAMPP Steps
To install Laravel follow these steps:
Step 1: Install XAMPP and Composer
Step 2: Install Laravel Installer Globally
Step 3: Install Laravel
Step 4: Run server
Step 5: Restart Apache in XAMPP
Step 2: Install Laravel Installer Globally
composer require laravel/installer -W
Step 3: Install Laravel
Create New Project in powershell inside C:\xampp\htdocs\
laravel new my-app
Step 4: Run server
In terminal run below comment to run server
cd my-app php artisan serve
Step 5: Restart Apache in XAMPP
Now you can open:
http://127.0.0.1:8000/