@extends('layouts.inspinia') @section('title', 'Accounting Reports') @section('content_header', 'Accounting Reports') @section('breadcrumb') @endsection @section('content')
Operational Finance Reports. All figures are derived from posted documents only. These reports are read-only and do not constitute official accounting records or GL entries.
{{-- Summary Cards --}}
Total Posted Sales {{ number_format($totalPostedSales, 2) }} Base currency (TZS)
Total Posted Purchases {{ number_format($totalPostedPurchases, 2) }} Local currency
Collections (Base TZS) {{ number_format($totalCollections, 2) }} Posted receipts
Supplier Payments {{ number_format($totalSupplierPayments, 2) }} Posted payments
Total Expenses {{ number_format($totalExpenses, 2) }} Posted expenses
Total Receivable {{ number_format($totalReceivable, 2) }} Customer balances
Total Payable {{ number_format($totalPayable, 2) }} Supplier balances
Est. Net Tax Payable {{ number_format($netTax, 2) }} Output − Input (estimate)
{{-- Report Links --}}
@can('sales_register.view')
Sales Register Posted tax invoices
@endcan @can('purchase_register.view')
Purchase Register Posted supplier invoices
@endcan @can('customer_collections.view')
Collections Report Posted customer receipts
@endcan @can('supplier_payments.view')
Supplier Payments Posted supplier payments
@endcan @can('expense_register.view')
Expense Register Posted expenses
@endcan @can('tax_summary.view')
Tax / VAT Summary Output & input tax estimate
@endcan @can('cash_movement.view')
Cash Movement Inflows & outflows summary
@endcan @can('debtors_creditors.view')
Debtors & Creditors Current balance summary
@endcan @can('aging_reports.view')
Aging Overview Overdue debtors & creditors
@endcan
@endsection