@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

@if(count($accounts['personal']) > 0)

Your accounts

These are your personal accounts.

@include('accounts.list',['accounts' => $accounts['personal']]) @endif @if(count($accounts['beneficiaries']) > 0)

Beneficiaries

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

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