{{ __('Reports') }} - {{ $shop->name }}
{{ __('Apply') }}
{{ __('Sales Summary') }}
{{ __('Invoices') }}: {{ $sales['invoice_count'] }}
{{ __('Total Sales') }}: {{ number_format((float) $sales['total_sales'], 2) }}
{{ __('Cash') }}: {{ number_format((float) $sales['cash_total'], 2) }}
{{ __('Credit') }}: {{ number_format((float) $sales['credit_total'], 2) }}
{{ __('Stock Summary') }}
{{ __('Products') }}: {{ $stock['total_products'] }}
{{ __('Low Stock') }}: {{ $stock['low_stock_products'] }}
{{ __('Current Units') }}: {{ $stock['current_stock_units'] }}
{{ __('Net Movement') }}: {{ $stock['net_movement'] }}
{{ __('Ledger Balances') }}
@forelse ($ledgerRows as $row) @empty @endforelse
{{ __('Party') }} {{ __('Type') }} {{ __('Balance') }}
{{ $row['party_name'] }} {{ strtoupper($row['party_type']) }} {{ number_format((float) $row['calculated_balance'], 2) }}
{{ __('No ledger rows found.') }}
{{ __('Daybook Cashflow') }}
{{ __('Total Cash In') }} {{ number_format((float) $daybook['total_cash_in'], 2) }}
{{ __('Total Cash Out') }} {{ number_format((float) $daybook['total_cash_out'], 2) }}
{{ __('Net Cashflow') }} {{ number_format((float) $daybook['net_cashflow'], 2) }}
@forelse ($daybook['days'] as $row) @empty @endforelse
{{ __('Date') }} {{ __('Cash In') }} {{ __('Cash Out') }} {{ __('Net') }}
{{ $row['date'] }} {{ number_format((float) $row['cash_in'], 2) }} {{ number_format((float) $row['cash_out'], 2) }} {{ number_format((float) $row['net'], 2) }}
{{ __('No daybook rows in this period.') }}