@extends('layouts.app') @section('title', 'Work Orders') @section('content')
| WO # | Title | Contractor | Project | Agreed | Paid | Status | Progress | Actions |
|---|---|---|---|---|---|---|---|---|
{{ $wo->work_order_number }} |
{{ $wo->title }} | {{ $wo->contractor->name }} | {{ $wo->project->project_name ?? '—' }} | ৳{{ number_format((float) $wo->agreed_amount, 2) }} | ৳{{ number_format((float) $wo->paid_amount, 2) }} | @php $statusColors = ['draft' => 'secondary', 'active' => 'primary', 'completed' => 'success', 'cancelled' => 'danger']; @endphp {{ ucfirst($wo->status) }} |
|
|
| No work orders found. | ||||||||