| # | @if($estimate->tax_per_item)Servicio | @elseServicio | @endifCantidad | Precio | @if($estimate->tax_per_item)Impuesto | @endif @if($estimate->discount_per_item)Descuento | @endifTotal |
|---|---|---|---|---|---|---|---|
| {{$index}} |
{{ preg_replace('/\((.*?)\)/i', '', $item->product->name)}} {!! nl2br(htmlspecialchars($item->product->description)) !!} |
{{ $item->quantity }} | {!! money($item->price, $estimate->currency_code)->format() !!} | @if($estimate->tax_per_item)@foreach ($item->getTotalPercentageOfTaxesWithNames() as $key => $value) {{$key.''}} @endforeach | @endif @if($estimate->discount_per_item){{ $item->discount_val }}% | @endif{!! money($item->total, $estimate->currency_code)->format() !!} |