@extends('layouts.app') @section('title','Transport Jobs') @section('page_title','Transport Jobs') @section('content')
Plan dispatch, track delivery, POD, revenue, cost and profit.
| Job | Date | Customer | Route / Service | Trips | Revenue | Cost | Profit | Status | |
|---|---|---|---|---|---|---|---|---|---|
| {{ $job->job_number }} {{ $job->customer_po }} | {{ $job->job_date->format('d M Y') }} | {{ $job->customer?->legal_name }} | {{ $job->route?->name ?? ($job->pickup_location.' → '.$job->delivery_location) }} {{ $job->serviceType?->name }} | {{ $job->number_of_trips }} | AED {{ number_format((float)$job->actual_revenue,2) }} | AED {{ number_format((float)$job->actual_cost,2) }} | AED {{ number_format((float)$job->profit,2) }} | {{ ucwords(str_replace('_',' ',$job->status)) }} | Open |
| No jobs found. | |||||||||