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
htdocsdirectory of your XAMPP installation. - Open the
php.inifile located in thexampp/phpdirectory and enable the following extensions:extension=php_openssl.dllextension=php_mbstring.dllextension=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
- ¿Cómo configurar PHP y Laravel desde cero?
- How can I use the PHP Zipstream library in a Laravel project?
- How do I set up a .gitlab-ci.yml file for a Laravel project using PHP?
- How can I use PHP and Laravel together?
- How do I decide between using PHP Laravel and Yii for my software development project?
- How do I write a unit test in Laravel using PHP?
- How do I use the chunk method in Laravel with PHP?
- How can I use the @yield directive in PHP Laravel?
- How do I set up a Laravel HasMany relationship using PHP?
- How can I access an undefined array key in PHP Laravel?
See more codes...