@extends('layouts.app') @section('title', 'Contractors') @section('content')

Contractors

Add Contractor
@forelse($contractors as $c) @empty @endforelse
# Contractor Specialization Mobile Total Agreed Total Paid Due Status Actions
{{ $c->id }} {{ $c->name }} {{ $c->specialization ?? '—' }} {{ $c->mobile }} ৳{{ number_format((float) $c->total_agreed, 2) }} ৳{{ number_format((float) $c->total_paid, 2) }} ৳{{ number_format((float) $c->total_due, 2) }} @if($c->is_active) Active @else Inactive @endif
No contractors found.
@if($contractors->hasPages()) @endif
@endsection