| Servicio | @elseServicio | @endifCantidad | Precio | @if($invoice->tax_per_item)Impuesto | @endif @if($invoice->discount_per_item)Descuento | @endifTotal |
|---|---|---|---|---|---|---|
|
{{ preg_replace('/\((.*?)\)/i', '', $item->product->name)}} {!! nl2br(htmlspecialchars($item->product->description)) !!} |
|
{!! money($item->price, $invoice->currency_code)->format() !!} | @if($invoice->tax_per_item)
@foreach ($item->getTotalPercentageOfTaxesWithNames() as $key => $value)
{{$key.''}} @endforeach |
@endif
@if($invoice->discount_per_item)
{{ $item->discount_val }}% | @endif{!! money($item->total, $invoice->currency_code)->format() !!} |
Subtotal |
{!! money($invoice->total, $invoice->currency_code)->format() !!} |
{{ __('messages.total') }} |
{!! money($invoice->total, $invoice->currency_code)->format() !!} |
{{ __('messages.discount') . ' (' . $invoice->discount_val . '%)' }} |
- {!! money(($invoice->discount_val / 100) * $invoice->sub_total, $invoice->currency_code)->format() !!} |
{{ __('messages.discount') }} |
- {!! money($discount_val, $invoice->currency_code)->format() !!} |
{{ $payment->payment_number }} ({{ $payment->payment_method->name ?? "-"}}) |
- {!! money($payment->amount, $payment->currency_code)->format() !!} |
Saldo Pendiente |
{!! money($invoice->due_amount, $invoice->currency_code)->format() !!} |