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 do I set up a .gitlab-ci.yml file for a Laravel project using PHP?
- How can I find PHP Laravel jobs in Canada?
- How do I set up a Laravel HasMany relationship using PHP?
- How can I use PHP and Laravel together?
- How can I use PHP Laravel's ZipArchive library to create a zip file?
- How can I use the @yield directive in PHP Laravel?
- How can I get the current year in PHP Laravel?
- How do I configure Xdebug in the php.ini file for a Laravel project?
- How can I convert JSON data to XML using PHP Laravel?
See more codes...