How to Start a Laravel Project
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 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 Make sure you have Composer. If you don’t just go to https://getcomposer.org/download/ and follow the instruction Go to your XAMPP htdocs folder in your Terminal or Command Prompt Type “composer create-project –prefer-dist laravel/laravel project_name” then press enter Wait until the operation complete Type “php artisan serve” then press enter Open your browser, then type in address bar the address that shown in terminal (ussualy http://127.0.0.1:8000)...
Read More
Recent Comments