@extends('admin.layouts.app') @section('title', 'Dashboard') @section('content')
Total Pesanan
Pending
Total Produk
Total Kategori
| Nama | Kategori | Harga | Status |
|---|---|---|---|
| {{ $product->name }} | {{ $product->category->name }} | Rp {{ number_format($product->final_price, 0, ',', '.') }} | @if($product->badge) {{ $product->badge }} @else — @endif |
| No. Pesanan | Pemesan | Total | Status |
|---|---|---|---|
| {{ $order->order_number }} | {{ $order->customer_name }} | Rp {{ number_format($order->grand_total, 0, ',', '.') }} | {{ $labels[$order->order_status] ?? $order->order_status }} |