@extends('layouts.inspinia')
@section('title', 'Accounting Reports')
@section('content_header', 'Accounting Reports')
@section('breadcrumb')
Report Centre
@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')
@endcan
@can('purchase_register.view')
@endcan
@can('customer_collections.view')
@endcan
@can('supplier_payments.view')
@endcan
@can('expense_register.view')
@endcan
@can('tax_summary.view')
@endcan
@can('cash_movement.view')
@endcan
@can('debtors_creditors.view')
@endcan
@can('aging_reports.view')
@endcan
@endsection