{{ __('messages.user.user_details') }}
|
{{ __('messages.nfc.payment_details') }}
|
| {{ __('messages.nfc.item') }} | {{ __('messages.common.price') }} | {{ __('messages.whatsapp_stores_templates.quantity') }} | {{ __('messages.nfc.total') }} |
|---|---|---|---|
| {{ $nfcOrder->nfcCard->name ?? 'N/A' }} | {{ $nfcOrder->nfcCard->price ?? 0 }} | {{ $nfcOrder->quantity ?? 1 }} | {{ number_format($nfcOrder->nfcCard->price * $nfcOrder->quantity, 2) ?? 0 }} |
| {{ __('messages.nfc.subtotal') }} | {{ number_format($nfcOrder->nfcCard->price * $nfcOrder->quantity, 2) }} |
| {{ __('messages.nfc.tax') }} ({{ $nfcOrder->nfcTransaction->tax ?? 0 }}%) | {{ number_format(($nfcOrder->nfcCard->price * $nfcOrder->quantity * ($nfcOrder->nfcTransaction->tax ?? 0)) / 100, 2) }} |
| {{ __('messages.whatsapp_stores.grand_total') }} | {{ $nfcOrder->nfcTransaction->amount ?? '0' }} |