@foreach($entity->rows as $row)
@if($row->price_list_id > 0 )
@endif
{{ $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
|
@endforeach
|
|
{{ 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
|