php-laravelHow do I install Laravel using XAMPP and PHP?
- Make sure you have XAMPP and PHP installed on your local machine.
- Download the latest version of Laravel from the Laravel website.
- Unzip the downloaded file and move the extracted folder to the
htdocs
directory of your XAMPP installation. - Open the
php.ini
file located in thexampp/php
directory and enable the following extensions:extension=php_openssl.dll
extension=php_mbstring.dll
extension=php_fileinfo.dll
- Open the command prompt and navigate to the laravel project directory.
- Run the following command to install the Laravel dependencies:
composer install
- Once the dependencies are installed, you can start the Laravel server by running the following command:
php artisan serve
Output example
Laravel development server started: <http://127.0.0.1:8000>
More of Php Laravel
- How can I use the @yield directive in PHP Laravel?
- How can I use PHP XLSXWriter with Laravel?
- How do I push an array to a Laravel application using PHP?
- How can I use Xdebug to debug a Laravel application written in PHP?
- How can I use the PHP Zipstream library in a Laravel project?
- ¿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 get the current year in PHP Laravel?
- How can I use PHP and Laravel together?
- How can I convert JSON data to XML using PHP Laravel?
See more codes...