@extends('admin.layout.admin') @section('content')

Dashboard

Total Customers

Total Order

Total Order Amount

{{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
Total Unpaid Invoices
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}}

New Users

{{-- @foreach($users->take(5) as $user)--}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- @endforeach--}}
Name Email Stripe Account ID Phone Country Address
{{$user->name ?? ' - '}}{{$user->email ?? ' - '}}{{$user->stripe_account_id ?? ' - '}}{{$user->phone ?? '-'}}{{$user->country ?? '-'}}{{$user->address ?? '-'}}

Latest Orders

{{-- @foreach($orders->take(5) as $order)--}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- @endforeach--}} {{-- --}}
Order # Customer Shipping Address Total Items Total Price Status Transaction ID
{{$order->order_number ?? '-'}}{{$order->user->name ?? '-'}}{{$order->shipping_address ?? '-'}}{{$order->total_items ?? '-'}}{{$order->total_price ?? '-'}}{{$order->status ?? '-'}}{{$order->transaction_id ?? '-'}}
@endsection