A Demo Project of Expense Tracker Manager. Consisting to following tools
- Laravel 10
- REST API
- Design pattern - Repository, Service, DTO
- In your root folder, clone the project file using git clone {project_repo}
- Open terminal (bash/cmd). Then go to project folder using command
cd {project_repo}- Then install required files and libraries using
composer install- Then create a .env file and generate key for this project using command
cp .env.example .env
php artisan key:generate- Create a database in MYSQL and connect it with your project via updating .env file.
- After connecting the db with project, then run command
php artisan migrate:fresh --seedThis is will run migration and seeder classes to feed some dummy data to check on api call.