@php
$readings = [
'Earthwork in excavation(in Mass) in any kind of soil including hard soil, slushy muck, hard moorum soil with the help of crawler mounted Excavator like Poclain / Tata Hitachi up to a depth of 3.00 Metre from the existing bed level for digging of pond, Trench cum bund (TCB)and Field bunding (FB) & disposing/ removing the excavated spoil on the bund (Spoil-bank) as per direction and upto a dist. of 1000.00 Metre, with the help of required dumpers. Rate should include for excavation by Mechanical excavator & disposing the excavated spoil by Dumpers, Marching time of Mechanical equipments.',
'Fine Dressing & Levelling of the excavated spoil on bund(spoil-bank) with the help of Mechanical excavator for proper compaction & finally by manual labour as per direction.Rate should include the earth cutting & filling to suit the site requirement',
'Outlet work- Supplying & laying NP2 RCC spun pipe 300mm dia with collar in lines and level and providing approved jointing materials and joint properly as per direction of E/I',
'Supplying, constructing random rubble masonry work using trap stone boulders of 200 - 300 mm size in cement sand mortar (1:6) in foundations, super structure, manholes, ducts, drains etc including fair cutting, waste, bonding, plumbing, lining, levelling, flushing, raking joints, scaffolding and curing, all as per drawings, specifications and directions of the Engineer/ Consultant, all materials, tools, plant and labour complete in all respect',
'Silt trap earthwork in excavation',
'Inlet Pitching Work- Earth work excavation in ordinary soil --- do--- dressing of soil as per direction of E/I.',
'Inlet Stone Pitching-Supplying and laying (properly as per design and drawing) rip-rap with good quality of dry boulders (200 - 300 mm size) duly packed including the cost of materials, royalty all taxes etc. but excluding the cost of carriage all complete as per specification and direction E/I.'
];
@endphp
@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
@php
$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;
@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 }} |
|