{{ t('account-activity-and-past-invoices-management') }}
| {{ t('invoice-number') }} | {{ t('date') }} | {{ t('amount') }} | {{ t('status') }} | {{ t('actions') }} |
|---|---|---|---|---|
|
{{ $order->invoice_number ?? 'Pedido #' . $order->id }}
|
{{ $order->created_at->format('d.m.Y H:i') }}
|
@if ($order->discount_amount && (float) $order->discount_amount > 0)
{{ number_format($order->total, 2, ',', '.') }} {{ t('currency') }}
Venta: {{ number_format((float) ($order->subtotal ?? $order->total + $order->discount_amount), 2, ',', '.') }} {{ t('currency') }} ยท
Descuento: -{{ number_format((float) $order->discount_amount, 2, ',', '.') }} {{ t('currency') }}
@if ($order->coupon_code || $order->coupon_name)
({{ $order->coupon_name ?: $order->coupon_code }})
@endif
@else
{{ number_format($order->total, 2, ',', '.') }} {{ t('currency') }}
@endif
|
{{ $statusLabel }} | {{ t('download-pdf') }} |
{{ t('no-invoices') }}