Laravel is a PHP framework that is very popular right now because it has various advantages compared to other frameworks.
If you want to create a project using Laravel, here is short tutorial how to begin your project

  1. Make sure you have XAMPP. If you dont, just go to https://www.apachefriends.org/download.html and choose version that fit to your operating system
  2. Make sure you have Composer. If you don’t just go to https://getcomposer.org/download/ and follow the instruction
  3. Go to your XAMPP htdocs folder in your Terminal or Command Prompt
  4. Type “composer create-project –prefer-dist laravel/laravel project_name” then press enter
  5. Wait until the operation complete
  6. Type “php artisan serve” then press enter
  7. Open your browser, then type in address bar the address that shown in terminal (ussualy http://127.0.0.1:8000)
  8. Done