@extends('layouts.app') @section('title', 'Dashboard Akun') @php $statusColors = [ 'pending_payment' => 'bg-amber-100 text-amber-700','paid' => 'bg-blue-100 text-blue-700', 'production' => 'bg-indigo-100 text-indigo-700','shipped' => 'bg-cyan-100 text-cyan-700', 'completed' => 'bg-emerald-100 text-emerald-700','complaint' => 'bg-rose-100 text-rose-700', 'refund' => 'bg-rose-100 text-rose-700','cancelled' => 'bg-slate-200 text-slate-600', ]; @endphp @section('content')
@include('account.partials.sidebar')

Halo, {{ explode(' ', $user->name)[0] }} ๐Ÿ‘‹

Selamat datang di dashboard akun Anda.

Total Pesanan

{{ $orderCount }}

Desain Tersimpan

{{ $designCount }}

@if ($store)

Toko ยท {{ $store->name }}

{{ $sellerStats['live'] }} live ยท {{ $sellerStats['pending'] }} moderasi

Kelola toko โ†’ @else

Mulai Jualan

Buka toko โ†’ @endif
@endsection