mivita/resources/views/pdf/delivery-detail.blade.php
2025-04-01 10:36:47 +02:00

28 lines
No EOL
1 KiB
PHP

<div id="invoice_box">
<table>
<thead>
<tr>
<th class="text-left" style="width: 10%">
<span class="no-line-break">{{__('tables.article_no')}}</span>
</th>
<th class="text-left" style="width: 40%">{{__('tables.label')}}</th>
<th class="text-right" style="width: 10%">{{__('tables.quantity')}}</th>
</tr>
</thead>
<tbody>
@foreach($shopping_order->shopping_order_items as $shopping_order_item)
<tr class="item">
<td class="small text-left">
{{ $shopping_order_item->product->number }}
</td>
<td class="small text-left">
{{ maxStrLength($shopping_order_item->product->getLang('name'), 35) }}
</td>
<td class="text-right small">
{{ cleanIntegerFromString($shopping_order_item->qty) }}
</td>
</tr>
@endforeach
</tbody>
</table>
</div>