@include('layouts.pdfHeader')
| Name of PIA: {{ $bill->baseline->project->pia->name ?? 'N/A' }} | Village: {{ $bill->baseline->village->name ?? 'N/A' }} | Panchayat: {{ $bill->baseline->panchayat->name ?? 'N/A' }} |
| Block: {{ $bill->baseline->block->name ?? 'N/A' }} | District: {{ $bill->baseline->district->name ?? 'N/A' }} | Unit: {{ $bill->baseline->unit->name ?? 'N/A' }} |
| State: {{ $bill->baseline->state->name ?? 'N/A' }} | Application Code: {{ $bill->baseline->application_code ?? 'N/A' }} | Financial Year: {{ $bill->baseline->financial_year->name ?? 'N/A' }} |
| Beneficiary Name: {{ $bill->baseline->name_of_respondent ?? 'N/A' }} | Plot No: {{ $bill->baseline->lands->first()->plot_khata ?? 'N/A' }} | |
| Sl.No. | Activity Name | Estimated | Actual | Bill Date | GPS Reading | Present Status | Remarks | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Qty | Rate | Amount | Unit | Qty | Rate | Amount | ||||||
| {{ $item->serial_no ?? $index + 1 }} | {{ $item->activity_name ?? 'N/A' }} | {{ $item->estimated_quantity ?? 0 }} | {{ number_format($item->estimated_rate ?? 0, 2) }} | {{ number_format($item->estimated_amount ?? 0, 2) }} | {{ $item->unit ?? '' }} | {{ $item->actual_quantity ?? 0 }} | {{ number_format($item->actual_rate ?? 0, 2) }} | {{ number_format($item->actual_amount ?? 0, 2) }} | @if ($loop->first){{ $bill->bill_date ?? 'N/A' }} | {{ $bill->gps_reading ?? 'N/A' }} | {{ ucfirst($bill->present_status ?? 'N/A') }} | {{ ucfirst($bill->remarks ?? 'N/A') }} | @endif
| No records found | ||||||||||||
| Total | {{ number_format($total_estimated, 2) }} | {{ number_format($bill->total ?? 0, 2) }} | ||||||||||
| GST (18%) | {{ number_format($gst_amount, 2) }} | {{ number_format($bill->gst ?? 0, 2) }} | ||||||||||
| Grand Total | {{ number_format($grand_total_calc, 2) }} | {{ number_format($bill->grand_total ?? 0, 2) }} | ||||||||||
| {{ ucfirst($bill->verification_status) }} By:- | {{ ucfirst($bill->present_status) }}By:- |
|
{{ $title }} @if ($path) No image @endif |
@endforeach
{{-- Fill empty space if odd number of images --}}
@if(count($row) < 2)
@endif |