These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
You need to have installed the following software:
php 8.2
composer 2.0.8
mysql 8.0.23
A step by step series of examples that tell you how to get a development env running
Clone the repository
git clone
Install dependencies
composer install
duplicate the .env.example file and rename it to .env
cp .env.example .env
Generate the application key
php artisan key:generate
migration and seed
php artisan migrate --seed
Run the application
php artisan serve