@extends('layouts.app') @section('content')

Seller Console

Overview of {{ Auth::user()->shop->shop_name }}

New Product

Revenue Analytics

Available Balance

${{ number_format($stats['balance'], 2) }}

Withdraw Funds
Total Sales {{ $stats['total_sales'] }}

Recent Orders

@foreach($recentOrders as $order) @endforeach
Order ID Customer Total Status Date
#{{ $order->order_number }} {{ $order->buyer->name }} ${{ $order->total }} {{ ucfirst($order->status) }} {{ $order->created_at->format('M d') }} Details
@endsection @push('scripts') @endpush