@php /** @var \Illuminate\Support\Carbon $from */ /** @var \Illuminate\Support\Carbon $to */ @endphp

{{ __('Cash Flow Report') }}

{{ __('View') }}
{{ __('Inflow') }}
{{ number_format($report['inflow'], 2) }}
{{ __('Outflow') }}
{{ number_format($report['outflow'], 2) }}
{{ __('Net Cash Flow') }}
{{ number_format($report['net_cash_flow'], 2) }}

{{ __('Daily Net Flow') }}

{{ __('By Transaction Type') }}

@forelse ($report['by_type'] as $type => $amount) @empty @endforelse
{{ ucfirst(str_replace('_', ' ', $type)) }} {{ number_format($amount, 2) }}
{{ __('No transactions in this period.') }}
@push('scripts') @vite('resources/js/reports.js') @endpush