Laravel framework needs a few requirements for getting installed on your system. A virtual machine has fulfilled each system requirement.
you must fulfill the following requirements:
- PHP having version 7.0 or upper version
- An OpenSSL extension for PHP
- A PDO extension for PHP
- Mbstring extension for PHP
- Tokenizer extension for PHP
- XML extension for PHP
Install Laravel:
Laravel implements a composer for managing dependencies within it. before using Laravel, you must check whether you have a composer on your system.
Create a New Laravel Project:
After installing the Laravel installer, you can create a new Laravel project by running the following command:
Start the Development Server:
project is created, navigate into the project directory using the terminal.
To start the development server, run the following command:
This will start a development server at http://localhost:8000
, where you can access your Laravel application.
thank you……..