Giter Site home page Giter Site logo

laravel-project-budgeting's Introduction

About

This is an extendable project budget tracking framework build using Laravel and VueJS. The scope of this project is to provide a base into which you can connect to any banking/transaction API of your choice, and from there on you can use the prebuild budget tracking features.

The main building blocks of the system are:

  • An API that serves the data to the JS frontend
  • A user permissions system
  • Projects: users can create projects within which individual costs are located
  • Cost Items: Each cost item is created within a project. A cost item represent a planned expense/revenue inside of the project.
  • Transaction: Each transaction that feeds into the system via the external API create a local DB transaction entry
  • Cost Link: A cost link serves to connect the Bank Transaction to the Cost Item. This way you can track which transaction belong to which Project.

The main pages are:

  • Landing page
  • Projects Overview Page
  • Project Editor
    • Add/Edit cost items, categorize them into departments and sectors.
    • See the difference between expected costs and actuals.
    • See the difference between the gross cashflow (including VAT) and net cashflow.
    • Enter cashflows that were created outside of the banking app (from cash balances etc.)
    • Assign tags to manually defined cashflows
    • Filter cost items on open/final status
    • Have an overview of the aggregate budget
  • Transactions page
    • See transactions coming from the banking API.
    • Link transactions from cost items in projects
    • Add tags to transactions
  • Cashflow check page
    • See the actual cashflow coming in adn out of accounts
    • Filter based on project name, cost status and tag
    • Get aggregated amounts
  • Settings page
    • Manage user roles

Howto

Create new user

Run php artisan tinker or sail artisan tinker (when using Docker) and execute:

use Illuminate\Support\Facades\Hash;
$user = new App\Models\User();
$user->password = Hash::make('root');
$user->email = '[email protected]';
$user->name = 'root';
$user->role = 'super';
$user->save();

Run Docker Environment

Start the containers by running the command from the root folder.

./vendor/bin/sail up
./vendor/bin/sail up -d # TO run in detached mode

Stop the container:

./vendor/bin/sail down

Setup the initial environment by running the Laravel migrations with:

./vendor/bin/sail migrate

Execute artisan commands:

./vendor/bin/sail artisan [command]

PhpMyAdmin is running on pot 8000, username:root, pass:password.

laravel-project-budgeting's People

Contributors

alecsmrekar avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.