{{ $item->item->name ?? 'Item' }}
@if($item->item->description)
{{ $item->item->description }}
@endif
@if($item->comment && $item->show_comment_on_receipt)
Note: {{ $item->comment }}
@endif
|
{{ $item->quantity }}
|
${{ number_format($item->unit_price, 2) }}
|
${{ number_format($item->quantity * $item->unit_price, 2) }}
|
@endforeach