9951 explained code solutions for 126 technologies


php-laravelHow can I set up a Laravel development environment on Windows?


Setting up a Laravel development environment on Windows involves the following steps:

  1. Install a web server: Apache or Nginx is recommended.
  2. Install PHP 7.2 or higher.
  3. Install Composer, the PHP package manager.
  4. Install the Laravel installer.
    composer global require laravel/installer
  5. Create a new Laravel project.
    laravel new projectname
  6. Configure the web server to point to the project's public directory.
  7. Access the project in a browser.

Helpful links

Edit this code on GitHub