This commit is contained in:
Kevin Adametz 2024-08-05 12:05:24 +02:00
parent 04d677d37a
commit bfa3bb1df4
1191 changed files with 637397 additions and 10619 deletions

View file

@ -6,13 +6,14 @@
{{ $value->product->number }}
</td>
<td class="small text-left">
{{ maxStrLength($value->product->name, 35) }}
{{ maxStrLength($value->product->getLang('name'), 35) }}
</td>
<td class="text-right small">
{{ $value->qty }}
</td>
</tr>
@endforeach
@if(isset($homeparty->order) && isset($homeparty->order['user_carts'][$homeparty_user->id]))
@php($user_cart = $homeparty->order['user_carts'][$homeparty_user->id])
@php($hp_order = $homeparty->order)
@if(!$homeparty_user->is_host)
@ -20,12 +21,13 @@
<td>&nbsp;</td>
<td colspan="6" class="text-left">
@if($homeparty_guest->getDelivery() === 'host')
Lieferung an Gastgeber
{{ __('homeparty.delivery_to_host') }}
@endif
@if($homeparty_guest->getDelivery() === 'direct')
Lieferung direkt an den Gast
{{ __('homeparty.delivery_directly_to_the_guest') }}
@endif
</td>
</tr>
@endif
@endif
@endif