@extends('layouts.app') @section('content')
| 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 |
| No records found. | |||||||