@extends('merchant.layout.app', ['page' => 'ecommerce']) @section('title', 'eCommerce Dashboard') @section('content')
Total Customers

{{ number_format($totalCustomers) }}

{{ $newPercent }}%
Offer Engagement

{{ number_format($offerEngagement) }}

Redeemed

Offer Engagement

Customer Overview

New vs Returning Customers

{{ $newPercent }}%

{{ $newCustomers }} new customers and {{ $repeatingCustomers }} returning customers during the selected period.

Total

{{ number_format($totalCustomers) }}

New

{{ number_format($newCustomers) }}

Returning

{{ number_format($repeatingCustomers) }}

Statistics

Target you’ve set for each month

Customers Demographic

Number of customer based on country

@php $demographics = $demographics ?? [ ['country' => 'USA', 'flag' => 'country-01.svg', 'customers' => '2,379', 'percent' => 79], ['country' => 'France', 'flag' => 'country-02.svg', 'customers' => '589', 'percent' => 23], ]; @endphp @foreach ($demographics as $demo)
{{ strtolower($demo['country']) }}

{{ $demo['country'] }}

{{ $demo['customers'] }} Customers

{{ $demo['percent'] }}%

@endforeach

Recent Orders

@php $statusClasses = [ 'Delivered' => 'bg-success-50 text-success-600 dark:bg-success-500/15 dark:text-success-500', 'Pending' => 'bg-warning-50 text-warning-600 dark:bg-warning-500/15 dark:text-orange-400', 'Canceled' => 'bg-error-50 text-error-600 dark:bg-error-500/15 dark:text-error-500', ]; $orders = $orders ?? [ ['image' => 'product-01.jpg', 'name' => 'Macbook pro 13”', 'variants' => '2 Variants', 'category' => 'Laptop', 'price' => '$2399.00', 'status' => 'Delivered'], ['image' => 'product-02.jpg', 'name' => 'Apple Watch Ultra', 'variants' => '1 Variants', 'category' => 'Watch', 'price' => '$879.00', 'status' => 'Pending'], ['image' => 'product-03.jpg', 'name' => 'iPhone 15 Pro Max', 'variants' => '2 Variants', 'category' => 'SmartPhone', 'price' => '$1869.00', 'status' => 'Delivered'], ['image' => 'product-04.jpg', 'name' => 'iPad Pro 3rd Gen', 'variants' => '2 Variants', 'category' => 'Electronics', 'price' => '$1699.00', 'status' => 'Canceled'], ['image' => 'product-05.jpg', 'name' => 'Airpods Pro 2nd Gen', 'variants' => '1 Variants', 'category' => 'Accessories', 'price' => '$240.00', 'status' => 'Delivered'], ]; @endphp @foreach ($orders as $order) @endforeach

Products

Category

Price

Status

Product

{{ $order['name'] }}

{{ $order['variants'] }}

{{ $order['category'] }}

{{ $order['price'] }}

{{ $order['status'] }}

@endsection @push('scripts') @endpush