The admin dashboard is the first screen you see after signing in with an ADMIN account. It gives you a real-time snapshot of your logistics operations across three sections: a row of summary stat cards, a bar chart breaking down shipment volume by status, and a scrollable table of the most recent shipments.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/fatelessdev/translogiX/llms.txt
Use this file to discover all available pages before exploring further.
Stat cards
Six cards appear at the top of the page, arranged in a responsive grid.Total Transporters
The total number of transporter companies registered in the system, regardless of their active or inactive status.
Total Vehicles
The total number of vehicles across all transporters, regardless of their current operational status.
Active Shipments
Shipments that are currently in progress — any shipment that is not yet DELIVERED or CANCELLED.
Completed
The total count of shipments with a DELIVERED status.
Pending
Shipments that have been created but not yet assigned to a transporter.
Revenue
Aggregate revenue in Indian Rupees (₹), formatted using the
en-IN locale (e.g., ₹1,25,000).Shipment volume by status
Below the stat cards is a bar chart titled Shipment Volume by Status. Each bar represents one shipment status and is color-coded to make the distribution immediately readable at a glance.| Status | Color |
|---|---|
| CREATED | Gray |
| ASSIGNED | Blue |
| PICKED_UP | Yellow |
| IN_TRANSIT | Orange |
| DELIVERED | Green |
| CANCELLED | Red |
Recent shipments
The Recent Shipments table lists the latest shipments ordered by creation date descending. It shows the following columns:| Column | Description |
|---|---|
| Package Code | Unique identifier for the shipment, displayed as a clickable link. |
| Source | The origin location of the shipment. |
| Destination | The delivery destination. |
| Status | A color-coded badge matching the chart colors above. |
| Transporter | The name of the assigned transporter, or a dash if unassigned. |
| Created | The date the shipment record was created, formatted as “Jan 1, 2025”. |
Clicking anywhere on a row navigates to the full shipment detail page at
/admin/shipments/{id}. The Package Code link in the first column does the same, without triggering the row click handler.