@extends('layouts.app') @section('title', 'Admin Dashboard') @section('content')
Total Users
Providers
Bookings
Revenue
| Booking # | Customer | Provider | Amount | Status |
|---|---|---|---|---|
| {{ $booking->booking_number }} | {{ $booking->customer->name }} | {{ $booking->provider->user->name ?? 'N/A' }} | ₦{{ number_format($booking->total_amount, 2) }} | {{ ucfirst($booking->status) }} |
| Transaction | User | Amount | Method | Status |
|---|---|---|---|---|
| {{ substr($payment->transaction_reference, 0, 10) }}... | {{ $payment->user->name }} | ₦{{ number_format($payment->amount, 2) }} | {{ ucfirst($payment->payment_method) }} | {{ ucfirst($payment->status) }} |
No pending provider approvals.
@endif