@extends('layouts.app') @section('title', 'Seller Dashboard — Jumia Clone') @section('content')
{{-- Header --}}

Seller Dashboard

Add Product
{{-- Loading --}}
@for($i=0;$i<4;$i++)
@endfor
{{-- Stats grid --}}
@foreach([ ['key' => 'total_revenue', 'label' => 'Total Revenue', 'icon' => '💰', 'format' => 'price', 'color' => 'orange'], ['key' => 'total_orders', 'label' => 'Total Orders', 'icon' => '📦', 'format' => 'number','color' => 'blue'], ['key' => 'total_products', 'label' => 'Active Products', 'icon' => '🏷️', 'format' => 'number','color' => 'purple'], ['key' => 'wallet_balance', 'label' => 'Wallet Balance', 'icon' => '💳', 'format' => 'price', 'color' => 'green'], ] as $stat)

{{ $stat['label'] }}

{{ $stat['icon'] }}
@endforeach
{{-- Seller nav tabs --}}
@foreach([ ['href' => '/seller/dashboard', 'label' => 'Overview', 'icon' => '📊'], ['href' => '/seller/products', 'label' => 'Products', 'icon' => '🏷️'], ['href' => '/seller/orders', 'label' => 'Orders', 'icon' => '📦'], ['href' => '/seller/payouts', 'label' => 'Payouts', 'icon' => '💸'], ['href' => '/seller/ads', 'label' => 'Ads', 'icon' => '📢'], ['href' => '/seller/settings', 'label' => 'Settings', 'icon' => '⚙️'], ] as $tab) {{ $tab['icon'] }} {{ $tab['label'] }} @endforeach
{{-- Recent orders --}}

Recent Orders

View all
@for($i=0;$i<5;$i++)
@endfor
No orders yet
{{-- Top products + quick actions --}}
{{-- Quick actions --}} {{-- Top products --}}

Top Products

Manage
No products yet
@endsection