This is a simple Expense Tracker app build with Filament Admin (TALL Stack).
- Income
- Expenses
- Category
- Dashboard
- Profile
- StatOverview Widget
- Recent Activity Widget
- Register (Livewire Component)
- Landing Page
- Setup Default Categories for new users
- Report (Monthly, Yearly, Custom)
- Import/Export CSV
Clone the repo locally:
git clone https://github.com/mohsin-shaikh/expense-tracker.git expense_tracker
cd expense_trackerInstall PHP dependencies:
composer installSetup configuration:
cp .env.example .envGenerate application key:
php artisan key:generateEdit .env and set your database connection details.
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=expense_tracker
DB_USERNAME=root
DB_PASSWORD=Run database migrations:
php artisan migrateRun database seeder:
php artisan db:seedRun the dev server (the output will give the address):
php artisan serveYou're ready to go! Visit Expense Tracker in your browser, and login with:
- Username: admin@gmail.com
- Password: password
The Expense Tracker is open-sourced software licensed under the MIT license.