Case file 003

Biyahero Express: Logistics Operations System

Logistics operations platform that follows a shipment through booking, dispatch, proof of delivery, COD remittance and invoicing.

Sector
Logistics
Role
Full-stack developer, operations model through interface
Category
Operations
Status
Deployed
Last verified
Biyahero Express logistics dashboard showing active deliveries and fleet status.
Biyahero Express logistics dashboard showing active deliveries and fleet status.

The pressure point

What problem does Biyahero Express solve?

Regional couriers often coordinate by phone. A booking starts in one place, dispatch happens in another, proof of delivery arrives in a chat thread, and cash collected in the field is reconstructed from memory at the end of the week.

The response

How does Biyahero Express work?

Biyahero Express follows one shipment from booking to remittance. Assignments, delivery status, proof, cash handling and invoicing stay attached to the same record, giving dispatch and finance one account of what happened.

Which architecture decisions shaped the build?

One shipment record carries the full lifecycle
Booking, dispatch, delivery and remittance are stages on one record, so nothing has to be reconciled across tables at the end of a run.
Cash-on-delivery tracked as an obligation attached to the shipment
Money collected in the field is the hardest thing to reconcile. Tying it to the delivery record makes the outstanding balance a query rather than a spreadsheet.
Operational dashboards built on the same tables as the workflow
No reporting copy of the data means the dashboard cannot drift from what dispatch is actually looking at.

Field notes from the build

Courier work leaves a trail of handoffs, physical evidence and money moving back toward the business. A generic CRUD dashboard loses that trail. The model has to understand the operation before the interface can tell the truth.

One shipment carries the whole chain

Booking, assignment, transit, delivery, proof and remittance attach to the same shipment. The end-of-day position becomes a query instead of an afternoon spent matching paper.

Cash in the field remains accountable

Cash collected by a driver remains an obligation until remittance. Tying that obligation to the shipment that created it turns reconciliation into a balance the system can show.

Evidence in the build

Domain modelling under operational pressure, a shipment lifecycle that survives partial failure and dashboards that read from the same working tables as dispatch.