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

@foreach($entity->rows as $row) @endforeach
@lang('orders::orders.form.product_service') @lang('orders::orders.form.unit_cost') @lang('orders::orders.form.quantity') @lang('orders::orders.form.line_total')
{{ $row->product_name }} {{ 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
{{ number_format($entity->paid,2) }} @if(!empty($entity->currency)) {{ $entity->currency->code }} @endif
{{ number_format($entity->balanceDue,2) }} @if(!empty($entity->currency)) {{ $entity->currency->code }} @endif