| {{ $order->invoice_number }} |
{{ $order->paid_at?->format('d M Y H:i') }} |
{{ $order->customer_name ?? '-' }} |
{{ $productsLabel }} |
{{ $order->total_items }} |
Rp{{ number_format($order->subtotal_amount, 0, ',', '.') }} |
Rp{{ number_format($order->discount_amount ?? 0, 0, ',', '.') }} |
Rp{{ number_format($order->shipping_cost ?? 0, 0, ',', '.') }} |
Rp{{ number_format($order->net_income, 0, ',', '.') }} |
{{ strtoupper($order->payment_method) }} |
@endforeach