How to install laravel 9
Today I am going to explain how you can Install Laravel 9.
Laravel Installation
Laravel documented the installation Guide you can read the document to get more details.
Requirements
- PHP 8.0.2
- MySql
- Composer (Get composer)
Install via Composer
Create first laravel 9 project
composer create-project laravel/laravel first-laravel9
Now GO to the Installed Directory
cd first-laravel9
Next run application
php artisan serve
All Set, Click on served Link and you can see output in your browser as below.
Thank you 🙏