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

Work Orders

New Work Order
@forelse($workOrders as $wo) @empty @endforelse
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) }}
{{ $wo->progress_percent }}%
@if(in_array($wo->status, ['draft', 'active'])) @endif
No work orders found.
@if($workOrders->hasPages()) @endif
@endsection