@extends('layouts.app') @section('page-title', __('Invoice Payments')) @section('page-heading', __('Invoice Payments')) @section('styles') @endsection @section('content')

Invoice Payments

Total Amount KES {{ number_format($totals->total_amount ?? 0, 2) }}
Total Tax KES {{ number_format($totals->total_tax ?? 0, 2) }}
Total Net KES {{ number_format($totals->total_net ?? 0, 2) }}
Total Invoices {{ number_format($totals->total_invoices ?? 0) }}/{{ number_format($totals->total_payments ?? 0) }}
@forelse($users as $user) @empty @endforelse
User Email County Total Amount Total Tax Total Net Invoices Actions
{{ $user->name }} {{ $user->email }} {{ $user->county->name ?? 'N/A' }} {{ number_format($user->total_amount_payable ?? 0, 2) }} {{ number_format($user->total_tax ?? 0, 2) }} {{ number_format($user->total_net_payable ?? 0, 2) }} {{ $user->invoice_count }}/{{ $user->total_payments }} View Details
No records found
{{ $users->links() }}
@endsection @push('scripts') @endpush