Work Order Payment Detail {{--
--}}
@if (!empty($data['work_order_list']) && count($data['work_order_list']) > 0) @foreach ($data['work_order_list'] as $index => $item) @if (is_numeric($index)) @endif @endforeach @else @endif
# Work Order No Party Name Total Amount Paid Amount Pending Amount Action
{{ $loop->iteration }} {{ $item['work_order_no'] }} {{ $item['party_name'] }} {{ $item['total_jobwork_amount'] ?? '0.00' }} {{ number_format($item['paid_amount'] ?? 0, 4) }} {{ number_format(($item['total_jobwork_amount'] ?? 0) - ($item['paid_amount'] ?? 0), 4) }} @if (number_format(($item['total_jobwork_amount'] ?? 0) - ($item['paid_amount'] ?? 0), 2) != 0) @else Payment Completed @endif
No data found