28 lines
No EOL
951 B
PHP
28 lines
No EOL
951 B
PHP
<div id="invoice_box">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th class="text-left" style="width: 10%">
|
|
<span class="no-line-break">Artikel-Nr.</span>
|
|
</th>
|
|
<th class="text-left" style="width: 40%">Bezeichnung</th>
|
|
<th class="text-right" style="width: 10%">Menge</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->name, 35) }}
|
|
</td>
|
|
<td class="text-right small">
|
|
{{ $shopping_order_item->qty }}
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div> |