@extends('layouts.admin') @section('content')

All Bookings & Dispatch

Monitor all jobs, view live amounts, and manually assign technicians.

Completed Value (Today)

₹12,450

+15% from yesterday

Ongoing Jobs Value

₹8,350

From 18 active jobs

Unassigned Potential

₹4,500

Needs to be dispatched instantly

@forelse($jobs as $job) @empty @endforelse
Job ID & Details Customer Info Status & Tech Action

#IFX-{{ $job->id }}

{{ $job->service_type }} • ₹{{ number_format($job->price) }}

{{ $job->customer_name }}

{{ $job->address }}

@if($job->status == 'pending') Unassigned @elseif($job->status == 'ongoing') Ongoing

{{ $job->technician_id ? 'Assigned Tech' : 'Tech Assigned' }}

@else Completed @endif
@if($job->status == 'pending') @else @endif
No jobs available right now.
@endsection