| Subtotal: |
Rp {{ number_format($invoice->subtotal ?? 0, 0, ',', '.') }} |
@if(($invoice->tax ?? 0) > 0)
| Pajak: |
Rp {{ number_format($invoice->tax, 0, ',', '.') }} |
@endif
@if(($invoice->discount ?? 0) > 0)
| Diskon: |
- Rp {{ number_format($invoice->discount, 0, ',', '.') }} |
@endif
| TOTAL: |
Rp {{ number_format($invoice->total ?? 0, 0, ',', '.') }} |
@if(($invoice->paid_amount ?? 0) > 0)
| Terbayar: |
- Rp {{ number_format($invoice->paid_amount, 0, ',', '.') }} |
| Sisa: |
Rp {{ number_format($invoice->remaining_amount ?? 0, 0, ',', '.') }} |
@endif