@if($item)
{{-- Image produit --}}
@if(!empty($item['image'])) {{ $item['name'] }} @else
@endif
{{-- Details --}}

{{ $item['name'] }}

@if(!empty($item['addons'])) @endif @php $unitPrice = $item['price'] + ($item['addon_price_per_unit'] ?? 0); @endphp

{{ number_format($unitPrice, 2, ',', ' ') }} € / unite @if(($item['addon_price_flat'] ?? 0) > 0) + {{ number_format($item['addon_price_flat'], 2, ',', ' ') }} € fixe @endif

{{-- Quantite --}}
@csrf @method('PATCH')
{{-- Prix ligne --}}
@php $lineTotal = ($item['price'] + ($item['addon_price_per_unit'] ?? 0)) * $item['quantity'] + ($item['addon_price_flat'] ?? 0); @endphp

{{ number_format($lineTotal, 2, ',', ' ') }} €

@csrf @method('DELETE')
@endif