@extends('layouts.app') @section('title','Transport Jobs') @section('page_title','Transport Jobs') @section('content')

Transport Jobs

Plan dispatch, track delivery, POD, revenue, cost and profit.

@if(auth()->user()->hasPermission('transport_jobs.create'))+ New Job@endif
{{ $jobs->total() }} jobs
@forelse($jobs as $job)@empty@endforelse
JobDateCustomerRoute / ServiceTripsRevenueCostProfitStatus
{{ $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.
{{ $jobs->links() }}
@endsection