@extends('layouts.bootstrap') @section('title', 'Cash Flow Report') @section('content')
Period: {{ $startDate->format('F d, Y') }} to {{ $endDate->format('F d, Y') }}
| Month | Cash In (Income) | Cash Out (Expenses) | Net Cash Flow | Running Balance |
|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($month)->format('F Y') }} | ${{ number_format($cashIn, 2) }} | ${{ number_format($cashOut, 2) }} | ${{ number_format($netFlow, 2) }} | ${{ number_format($runningBalance, 2) }} |
| No data available for this period | ||||
| Total | ${{ number_format($totalCashIn, 2) }} | ${{ number_format($totalCashOut, 2) }} | ${{ number_format($totalCashIn - $totalCashOut, 2) }} | ${{ number_format($runningBalance, 2) }} |