@extends('layouts.vendor') @section('content')
Track your store's performance and growth
{{ price($periodRevenue) }}
Revenue this period
{{ number_format($periodOrders) }}
Orders this period
{{ number_format($totalProducts) }}
{{ $publishedProducts }} published, {{ $lowStockProducts }} low stock
{{ price($periodAvgOrderValue) }}
Average order value
Earnings trend for the selected period
Distribution of your orders
Current order fulfillment overview
{{ $step['count'] }}
{{ round(($step['count'] / $totalOrdersInPipeline) * 100) }}%
Best selling products by revenue
| # | Product | Sold | Revenue |
|---|---|---|---|
| {{ $index + 1 }} |
{{ $product->name }} |
{{ number_format($product->sales_count) }} | {{ price($product->revenue) }} |
| No sales data available | |||
Latest orders with your products
| Order # | Customer | Status | Total |
|---|---|---|---|
| {{ $order->order_number }} | {{ $order->customer?->name ?? 'Guest' }} | {{ str_replace('_', ' ', $order->status) }} | {{ price($order->total) }} |
| No orders yet | |||