This project includes authentication features using Laravel Breeze and a calculator that supports basic arithmetic operations. The calculator also keeps track of your previous calculations.
Follow these steps to set up and run the project on your local machine.
git clone https://github.com/AlbinaBaraliu/buckaroo_calculator.git
cd buckaroo_calculator
composer install
cp .env.example .env
php artisan key:generate
php artisan optimize
php artisan migrate
php artisan serve
The application should now be accessible at http://127.0.0.1:8000
in your web browser.
- Register a new account or log in using the provided authentication features.
- Navigate to the calculator section to perform basic arithmetic operations.
- Previous calculations will be displayed, allowing you to track your history.