@extends('layouts.app') @section('title', 'Contractor Due Report') @section('content')

Contractor Due Report

All contractors with outstanding work order balances

PDF Excel CSV

৳{{ number_format($data->sum('total_agreed')) }}

Total Agreed

৳{{ number_format($data->sum('total_paid')) }}

Total Paid

৳{{ number_format($data->sum('total_due')) }}

Total Due

@forelse($data as $i => $row) @empty @endforelse
# Contractor Specialization Mobile Agreed Paid Due
{{ $i + 1 }} {{ $row->name }} {{ $row->specialization ?? '—' }} {{ $row->mobile }} ৳{{ number_format($row->total_agreed) }} ৳{{ number_format($row->total_paid) }} ৳{{ number_format($row->total_due) }}
No contractor dues found.
@endsection