{{-- Looping through first 7 readings --}}
@for ($i = 0; $i < 7; $i++)
@php
$item = $mb->readings[$i] ?? null;
$description = $readings[$i] ?? $item?->description;
@endphp
@if ($item)
| {{ $i + 1 }} |
{!! $description !!} |
{{ $item->unit }} |
{{ $item->qty }} |
{{ $item->rate }} |
{{ number_format($item->amount, 2) }} |
{{ $item->remarks }} |
@endif
@endfor
{{-- Fixed custom entries from reading 8 onward --}}
@php
// Safely get item 7 and beyond (i.e., index 7 = 8th item)
$item8 = $mb->readings[7] ?? null;
$item9 = $mb->readings[8] ?? null;
$item10 = $mb->readings[9] ?? null;
$item11 = $mb->readings[10] ?? null;
$item12 = $mb->readings[11] ?? null;
$item13 = $mb->readings[12] ?? null;
@endphp
| 8 |
Display Board (1m x 1m x 0.3m) |
|
|
|
|
|
| 8.A |
Earth work in excavation |
{{ $item8?->unit ?? '' }} |
{{ $item8?->qty ?? '' }} |
{{ $item8?->rate ?? '' }} |
{{ isset($item8->amount) ? number_format($item8->amount, 2) : '' }} |
{{ $item8?->remarks ?? '' }} |
| 8.B |
Supplying, constructing one or more brick thick burnt clay brickwork (Foundation and Superstructure) |
{{ $item9?->unit ?? '' }} |
{{ $item9?->qty ?? '' }} |
{{ $item9?->rate ?? '' }} |
{{ isset($item9->amount) ? number_format($item9->amount, 2) : '' }} |
{{ $item9?->remarks ?? '' }} |
| 8.C |
Supplying and laying plaster with (1:6) cement sand mortar at and at all heights and depths above and below finished ground level to faces of walls, pillars, columns, a) 12 mm thick (in one operation) |
{{ $item10?->unit ?? '' }} |
{{ $item10?->qty ?? '' }} |
{{ $item10?->rate ?? '' }} |
{{ isset($item10->amount) ? number_format($item10->amount, 2) : '' }} |
{{ $item10?->remarks ?? '' }} |
| 8.D |
Wall writing with synthetic paint as per guidance of site in-charge |
{{ $item11?->unit ?? '' }} |
{{ $item11?->qty ?? '' }} |
{{ $item11?->rate ?? '' }} |
{{ isset($item11->amount) ? number_format($item11->amount, 2) : '' }} |
{{ $item11?->remarks ?? '' }} |
| 9 |
Grass Turfing- Fine Dressing of the canal banks or embankment and turfing with
75 mm thick grass sods, obtained within lead of 150m, including the cost of watering
the grass surface till it acquires greenness as per specification and direction of E/I.
|
{{ $item12?->unit ?? '' }} |
{{ $item12?->qty ?? '' }} |
{{ $item12?->rate ?? '' }} |
{{ isset($item12->amount) ? number_format($item12->amount, 2) : '' }} |
{{ $item12?->remarks ?? '' }} |
| Total |
{{ $mb->total }} |
|
| GST @18% |
{{ $mb->gst }} |
|
| G. Total |
{{ $mb->grand_total }} |
|
| Round G. Total |
{{ $mb->rounded_total }} |
|