{{ $item->quantity }}x
{{ $item->name }}
@if($item->selectedOptions && $item->selectedOptions->count() > 0)
@foreach($item->selectedOptions as $opt)
→ {{ $opt->option_name }}@if($opt->price_modifier > 0) (+€{{ number_format($opt->price_modifier, 2, ',', '.') }})@endif
@endforeach
@endif
@if($item->special_requests)
⚠️ {{ $item->special_requests }}
@endif
@if($item->notes)
📝 {{ $item->notes }}
@endif
|
€ {{ number_format($item->price, 2, ',', '.') }}
@if($item->options_total > 0)
+{{ number_format($item->options_total, 2, ',', '.') }}
@endif
|
€ {{ number_format(($item->price + ($item->options_total ?? 0)) * $item->quantity, 2, ',', '.') }}
|
@endforeach