@extends('layouts.default') @section('content')

Firefly Accounts

Accounts are the record holders for transactions and transfers. Money moves from one account to another.

In a double-entry bookkeeping system almost everything is an account. Your own personal bank accounts are representated as accounts (naturally), but the stores you buy stuff at are also represented as accounts. Likewise, if you have a job, your salary is drawn from their account.

Create a new account

Your accounts

These are your personal accounts.

@include('accounts.list',['accounts' => $accounts['personal']])

Beneficiaries

These are beneficiaries; places where you spend money or people who pay you.

@include('accounts.list',['accounts' => $accounts['beneficiaries']])

Initial balances

These are system accounts; created to add balance to the books when you add a personal account which already has money in it. That money has to come from somewhere.

@include('accounts.list',['accounts' => $accounts['initial']])

Cash

This is a system account. When you don't specify a beneficiary or draw many from an ATM (or put cash in your personal accounts) it gets added or drawn from this account.

@include('accounts.list',['accounts' => $accounts['cash']])
@stop