minispire_loan
1.0.0
Minispire Loan is a digital platform for providing loans to its users.
Minispire Loan is backend RESTFUL API provider having following 2 user roles:
Client (Customer) User
Admin User
NOTE : It is expected that Apache and MySQL server are insalled in the system.
INSTALLATION :
- git clone https://github.com/parthlimbad/minispire_loan.git
- cd minispire_loan
- composer install
- php artisan create:database
- php artisan migrate
- php artisan passport:install
- php artisan passport:keys
- php artisan db:seed --class=RoleSeeder
- php artisan db:seed --class=AdminSeeder
RUN THE PROJECT :
- php artisan serve
Minispire Loan Postman Collection (Minispire Loan.postman_collection.json) is included in this repo containing all API requests for above mentioned Client and Admin Actions.
RUN TEST CASES:
- php artisan test --testsuite=Feature --filter UserTest
- php artisan test --testsuite=Feature --filter LoanTest