@extends('layouts.app') @section('content')

Payment Receipts

Track payments received, deductions, and net receipts.
Reset
@if (session('success'))
{{ session('success') }}
@endif
Invoice Amount (Page)
₹ {{ number_format((float) $pageInvoiceTotal, 2) }}
Payment Received (Page)
₹ {{ number_format((float) $pageReceivedTotal, 2) }}
@forelse ($paymentReceipts as $receipt) @empty @endforelse
Date Project Invoice No Invoice Amount Payment Received Total Deductions Net Received Actions
{{ $receipt->receipt_date ?? $receipt->invoice_date }}
{{ $receipt->project_name }}
{{ $receipt->project_code }}
{{ $receipt->invoice_no }} {{ $receipt->invoice_amount !== null ? number_format((float) $receipt->invoice_amount, 2) : '' }} {{ $receipt->payment_received !== null ? number_format((float) $receipt->payment_received, 2) : '' }} {{ $receipt->total_deductions !== null ? number_format((float) $receipt->total_deductions, 2) : '' }} {{ $receipt->net_received !== null ? number_format((float) $receipt->net_received, 2) : '' }} View Edit
@csrf @method('DELETE')
No records found.
@if ($paymentReceipts->hasPages())
{{ $paymentReceipts->links() }}
@endif
@endsection @push('styles') @endpush @push('scripts') @endpush