Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
The minimum version of php you need to run this project is PHP v8 please make sure you have this version of PHP on your system
The first step is to install the project. You are installing project dependencies. First, make sure that Composer is installed on your operating system. If it is not installed, you can install it from this Link. And after installation, refer to this section
To install the packages, first, enter this command in the project's root path.
composer install
With this command, all the required packages for the project are downloaded and installed.
In the project, because there is no need for a special env, the default env of Laravel is used, and the only thing you need to do is to change the .env.example file to .env
Please before start the project run your mysql database , and after that create empty database with name verde and after that enter your mysql connection detail in .env file. please make sure evey thing working fine with you mysql database
after run the mysql database and enter the connection data in .env file please run this command for run migration and create tables.
php artisan migrate
if this command return error please check your database status and database connection in .env file.
After you have done all the above things entirely, you can now run the project. To run the project, you can use the following command to run the project automatically for you.
php artisan serve
You can run all test file with this command and check the result of each test.
php artisan test
You can see the example api of this project from whit link please make sure check this link. Postman Sample.