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.

@if (is($totals->recent_drivers ?? '', 'array')) @foreach ($totals->recent_drivers as $key => $value) @endforeach @endif
# Name Email Status Action
{{ ++$loop->index }}.

{{ $value->first_name ?? '' }} {{ $value->last_name ?? '' }}

{{ $value->mobile ?? '' }}

{{ $value->email ?? '' }} {{ get_status($value->status)->title ?? '' }}

Recent Orders

You can see all recent orders here.

@if (is($totals->recent_orders ?? '', 'array')) @foreach ($totals->recent_orders as $key => $value) @endforeach @endif
# User Status Price Kms
{{ ++$loop->index }}.
profile_pic ?? '') }} class="rounded-circle shadow" style="width:63px; height:63px; border: 2px solid #d3d3d3">
@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.

@if (is($totals->recent_transactions ?? '', 'array')) @foreach ($totals->recent_transactions as $key => $value) @endforeach @endif
# Transaction ID User Payment Type Transaction Type Amount Created date
{{ ++$loop->index }}. {{ $value->id ?? 0 }}
profile_pic ?? '') }} class="rounded-circle shadow" style="width:63px; height:63px; border: 2px solid #d3d3d3">

{{ $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) ?? '' }}