@extends('layouts.finance') @section('title', 'Cash Flow') @section('subtitle', 'Inflows and outflows over time') @section('content')
| Month | Cash In | Cash Out | Net |
|---|---|---|---|
| {{ $label }} | {{ $metrics->money($trend['revenue'][$i]) }} | {{ $metrics->money($trend['expenses'][$i]) }} | {{ $metrics->money($trend['revenue'][$i] - $trend['expenses'][$i]) }} |
Cash flow is computed from posted transaction rows. Income increases cash, expenses decrease cash, and transfers should be entered as paired rows or managed through the ledger flow.