@extends('layouts.app') @section('title', 'Station Management') @section('content')
Manage and organize bus station connections.
| From Station | To Station | Bus Fare (ZMW) | Created Date | Actions | |
|---|---|---|---|---|---|
| {{ strtoupper($route->from_station ?? 'N/A') }} | {{ strtoupper($route->to_station ?? 'N/A') }} | ZMW {{ number_format($route->bus_fare, 2) }} | {{ $route->created_at ? $route->created_at->format('d M Y') : 'ā' }} | ||
|
No routes found Click "New Route" to add your first station connection. |
|||||