{{-- layout extend --}} @extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Dashboard') {{-- vendor styles --}} @section('vendor-style') @endsection {{-- page styles --}} @section('page-style') @endsection {{-- page content --}} @section('content')

Transactions

{{ $currentYear }} Monthly Transactions

Services more_vert

Service Requests = {{ $requestCount - $reportCount }}

Service Reports = {{ $reportCount }}

{{ $monthCountMerchants }}

New

{{ $totalMerchants }}

perm_identity

Total Merchant

+ {{ number_format($currentTransaction) }} MMK Today

Total revenue

{{ number_format($totalRevenue) }} MMK

Order List more_vert

@foreach ($orders as $order) @endforeach
Name Address Payment Method Status Total Price Created At
{{ $order->user->name ?? null }} {{ $order->address->address ?? null }} {{ $order->payment_method ?? null }} {{ $order->status ?? null }} {{ $order->total_price ?? null }} MMK {{ $order->created_at ?? null }}

User Statistics

- Customer

- Merchant

Recent Customer Orders more_vert

    @foreach ($recentBuyers as $recentBuyer)
  • {{ $recentBuyer->user->name ?? '-' }}

    {{ $recentBuyer->user->created_at ?? '-' }}

  • @endforeach
{{-- @include('pages.intro') --}} @endsection {{-- vendor scripts --}} @section('vendor-script') @endsection {{-- page scripts --}} @section('page-script') @endsection