{{ $invoice->user->name }}
{{ $invoice->user->email }}
@if($invoice->user->phone)
Tel: {{ $invoice->user->phone }}
@endif
| Descripción | Cantidad | Precio Unit. | Total |
|---|---|---|---|
| {{ $item['description'] }} | {{ $item['quantity'] }} | ${{ number_format($item['unit_price'], 2) }} | ${{ number_format($item['total'], 2) }} |
| Subtotal: | ${{ number_format($invoice->subtotal, 2) }} |
| {{ $tax['name'] }}{{ isset($tax['rate']) ? ' (' . $tax['rate'] . '%)' : '' }}: | ${{ number_format($tax['amount'], 2) }} |
| Impuestos: | ${{ number_format($invoice->tax, 2) }} |
| Total: | ${{ number_format($invoice->total, 2) }} |
{{ $invoice->notes }}
@endif @if(!empty($settings['note'])){{ $settings['note'] }}
@endif