php-laravelHow do I set up a Laravel project with XAMPP on a Windows machine?
- Download and install XAMPP from https://www.apachefriends.org/download.html
- Install Composer from https://getcomposer.org/download/
- Open XAMPP control panel and start Apache and MySQL
- Create a new folder in the XAMPP/htdocs directory and open a command prompt in the folder
- Run the following command to create a new Laravel project:
composer create-project --prefer-dist laravel/laravel projectname
- Go to the projectname/config/ folder and open the database.php file
- Update the MySQL connection details in the file to connect to the XAMPP MySQL server.
Code explanation
**
- composer create-project --prefer-dist laravel/laravel projectname: This command will create a new Laravel project in the specified directory.
## Helpful links
- https://www.apachefriends.org/download.html: Download link for XAMPP
- https://getcomposer.org/download/: Download link for Composer
More of Php Laravel
- ¿Cómo configurar PHP y Laravel desde cero?
- How can I use the @yield directive in PHP Laravel?
- How can I access an undefined array key in PHP Laravel?
- How do I set up a websocket connection using Laravel and PHP?
- How do I set up a Laravel worker using PHP?
- How can I use PHP and Laravel to create a user interface?
- How do I set the timezone in PHP Laravel?
- How do I generate an app_key for my Laravel PHP application?
- How can I use PHP and Laravel together?
- How do I use PHP Laravel Tinker to debug my code?
See more codes...