@extends('layouts.app') @section('title', 'Station Management') @section('content')

Stations

Manage and organize bus station connections.

List of Station Routes

@forelse($routes as $route) @empty @endforelse
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.

@endsection @push('scripts') @endpush