@lang('quotes::quotes.panel.products_and_services')

@foreach($entity->rows as $row) @endforeach
@lang('quotes::quotes.form.product_service') @lang('quotes::quotes.form.unit_cost') @lang('quotes::quotes.form.quantity') @lang('quotes::quotes.form.line_total')
{{ $row->product_name }} @if(config('quotes.show_product_image') && !empty($row->product))
@endif
{{ number_format($row->price,2) }} @if(!empty($entity->currency)) {{ $entity->currency->code }} @endif {{ $row->quantity }} {{ number_format($row->lineTotal,2) }} @if(!empty($entity->currency)) {{ $entity->currency->code }} @endif
{{ number_format($entity->subtotal,2) }} @if(!empty($entity->currency)) {{ $entity->currency->code }} @endif
{{ number_format($entity->discount,2) }} @if(!empty($entity->currency)) {{ $entity->currency->code }} @endif
{{ number_format($entity->delivery_cost,2) }} @if(!empty($entity->currency)) {{ $entity->currency->code }} @endif
{{ number_format($entity->taxValue,2) }} @if(!empty($entity->currency)) {{ $entity->currency->code }} @endif
{{ number_format($entity->grossValue,2) }} @if(!empty($entity->currency)) {{ $entity->currency->code }} @endif