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

Transport Hub

Manage companies, routes, and interstate logistics

@foreach($companies as $company)
{{ $company->name }}
{{ count($company->routes) }} Active Routes
@foreach($company->routes as $route) @endforeach @if($company->routes->isEmpty()) @endif
Route / Destination Base Fare Schedules Action
{{ $route->from_location }} {{ $route->to_location }}
₦{{ number_format($route->base_price, 2) }} {{ count($route->schedules) }} Departure(s) Today
No routes established for this company yet.
@endforeach @if($companies->isEmpty())
🚌
No Transport Partners

Registration pending for third-party logistics companies.

@endif
@endsection