@extends('layouts.app') @section('title', 'BusGo | Dashboard') @section('content')
Here's what's happening with your bus operations today.
Active Buses
{{ $stats['active_buses'] ?? 0 }}
Active Drivers
{{ $stats['active_drivers'] ?? 0 }}
Total Trips
{{ $stats['total_trips'] ?? 0 }}
Total Bookings
{{ $stats['total_bookings'] ?? 0 }}
Total Revenue
ZMW {{ number_format($stats['revenue'] ?? 0, 2) }}
Refunds
ZMW {{ number_format($stats['refunds'] ?? 0, 2) }}
Total Bookings
{{ $stats['total_bookings'] ?? 0 }}
Current Bookings
{{ $stats['current_bookings'] ?? 0 }}
Cancelled Bookings
{{ $stats['cancelled_bookings'] ?? 0 }}
Cancelled Trips
{{ $stats['cancelled_trips'] ?? 0 }}
Company Name
{{ Auth::user()->company->name ?? 'N/A' }}
Company Email
{{ Auth::user()->company->email ?? 'N/A' }}
Admin Name
{{ Auth::user()->name }}
Admin Email
{{ Auth::user()->email }}