@if ($multiUser)
| {{ trans('texts.user') }} |
@endif
{{ trans('texts.product') }} |
{{ trans('texts.notes') }} |
{{ trans('texts.cost') }} |
@if ($account->custom_invoice_item_label1)
{{ $account->present()->customProductLabel1 }} |
@endif
@if ($account->custom_invoice_item_label2)
{{ $account->present()->customProductLabel2 }} |
@endif
@foreach ($products as $product)
@if ($multiUser)
| {{ $product->present()->user }} |
@endif
{{ $product->product_key }} |
{{ $product->notes }} |
{{ $product->cost }} |
@if ($account->custom_invoice_item_label1)
@endif
@if ($account->custom_invoice_item_label1)
{{ $product->custom_value1 }} |
@endif
@if ($account->custom_invoice_item_label2)
{{ $product->custom_value2 }} |
@endif
@endforeach