31 lines
1.3 KiB
PHP
31 lines
1.3 KiB
PHP
|
|
@if($homeparty_user && isset($homeparty_user->homeparty_user_order_items))
|
|
@foreach($homeparty_user->homeparty_user_order_items as $value)
|
|
<tr class="item">
|
|
<td class="small text-left">
|
|
{{ $value->product->number }}
|
|
</td>
|
|
<td class="small text-left">
|
|
{{ maxStrLength($value->product->name, 35) }}
|
|
</td>
|
|
<td class="text-right small">
|
|
{{ $value->qty }}
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
@php($user_cart = $homeparty->order['user_carts'][$homeparty_user->id])
|
|
@php($hp_order = $homeparty->order)
|
|
@if(!$homeparty_user->is_host)
|
|
<tr class="foot-small">
|
|
<td> </td>
|
|
<td colspan="6" class="text-left">
|
|
@if($homeparty_guest->getDelivery() === 'host')
|
|
Lieferung an Gastgeber
|
|
@endif
|
|
@if($homeparty_guest->getDelivery() === 'direct')
|
|
Lieferung direkt an den Gast
|
|
@endif
|
|
</td>
|
|
</tr>
|
|
@endif
|
|
@endif
|