https://laravel.com/docs/10.x/installation#getting-started-on-windows
- Docker Desktop
- WSL
- open your terminal
- git clone https://github.com/mhardaniel/mortgage-loan-calculator.git
- cd mortgage-loan-calculator
- cp .env.example .env
- php artisan key:generate
- ./vendor/bin/sail up
- php artisan migrate
- you can access the application in your web browser at: http://localhost
- Fill all required fields then click Calculate button to generate Payment Breakdown
- You can add extra payments on the form to see the recalculated Amortization
mhardaniel