Dashboard
{{ env('APP_NAME') }} dashboard to track {{ env('APP_NAME') }}'s trendings.
Total Drivers
{{ $totals->drivers ?? 0 }}
Total Vehicles
{{ $totals->vehicles ?? 0 }}
Total Orders
{{ $totals->orders ?? 0 }}
Total Users
{{ $totals->users ?? 0 }}
Total User Cancelled
{{ $totals->user_canceled_rides ?? 0 }}
REVENUE
{{ price_format($totals->revenue ?? 0) }}
Pending Payout Drivers
{{ $totals->pending_payouts ?? 0 }}
Drivers Tracking
You can track all active drivers here.
Latest Driver
You can see all new drivers here.
| # | Name | Status | Action | |
|---|---|---|---|---|
| {{ ++$loop->index }}. |
{{ $value->first_name ?? '' }} {{ $value->last_name ?? '' }} |
{{ $value->email ?? '' }} | {{ get_status($value->status)->title ?? '' }} |
|
Recent Orders
You can see all recent orders here.
| # | User | Status | Price | Kms |
|---|---|---|---|---|
| {{ ++$loop->index }}. |
@if (is($value->mobile ?? ''))
{{ $value->first_name ?? '' }} {{ $value->mobile ?? '' }} @endif |
@if ($value->status === 0) Just Booked @elseif($value->status === 1)Complete @elseif($value->status === 2) OnGoing @elseif($value->status === 3) Cancel @endif |
{{ price_format($value->price ?? 0) }} | {{ $value->kms ?? 0 }} kms |
Recent Transactions
You can see all recent transactions here.
| # | Transaction ID | User | Payment Type | Transaction Type | Amount | Created date |
|---|---|---|---|---|---|---|
| {{ ++$loop->index }}. | {{ $value->id ?? 0 }} |
{{ $value->first_name ?? '' }} {{ $value->mobile ?? '' }} |
{{ $value->payment_type ?? '' }} |
@if ($value->transaction_type === 'credit') Credit @elseif($value->transaction_type === 'debit') Debit @endif |
{{ price_format($value->amount ?? 0) }} | {{ datetime_format($value->created_date) ?? '' }} |