Kukreja Interiors
A-45, R Quarters, Near Sai Chowk, Pimpri,
Pune - 411017 Maharashtra, India
Phone : +91 96650 65522
Email : kukreja_interiors@yahoo.com

LABOUR'S WORK DONE

@if(!$is_pdf)
Reset
@endif @foreach($workdowns as $workdown) @php $total = 0; @endphp

{{ $workdown['labour'] }}

@php $groupedLabours = collect($workdown['workdown_items'])->groupBy('labour_name'); $grandTotal = 0; // Define once, outside the loop @endphp @foreach($groupedLabours as $labourName => $items) @php $labourTotal = 0; @endphp @foreach($items as $item) @php $rowTotal = ($item->quantity * ($item->labour_rate ?? 0)); $labourTotal += $rowTotal; @endphp @endforeach @php $grandTotal += $labourTotal; // Add after finishing this labour @endphp @endforeach
Order No Date Customer Name Quantity Rate Total
Labour: {{ $labourName }}
{{ $item->order_code }} {{ \Carbon\Carbon::parse($item->updated_at)->format('d-m-Y') }} {{ $item->customer_name }} {{ $item->quantity }} {{ number_format($item->labour_rate ?? 0, 2) }} {{ number_format($rowTotal, 2) }}
Total for {{ $labourName }} {{ number_format($labourTotal, 2) }}
Grand Total {{ number_format($grandTotal, 2) }}
@endforeach

@if(!$is_pdf) Download @endif