@if($product->image_url)

@endif
{{ ($product->sku ? $product->sku . ': ' : '') . $product->name }}
@if ($product->description)
{!! nl2br(e($product->description)) !!}
@endif
|
{{ $product->qty }} {{ $product->unit ?: '' }}
|
{{ $product->unitPrice()->format() }}
|
@if ($billable->isTaxable())
{{ $product->tax_label }} ({{ $product->tax_rate }}%)
|
@endif
@if ($billable->hasDiscount())
@if ($product->discount_type === 'fixed')
{{ $product->discountedAmount()->format() }}
@endif
@if ($product->discount_type === 'percent')
{{ $product->discount_total }}%
@endif
|
@endif
{{ $product->amount()->format() }}
|
@endforeach