@foreach ($this->foodItems as $food)
@endforeach
@if ($showCart)
{{ $food['name'] }}
Rp{{ number_format($food['price'], 0, ',', '.') }}
Keranjang Anda
@forelse ($cartItems as $item)
{{ $item['name'] }}
Qty: {{ $item['qty'] }}
Total: Rp{{ number_format($item['total_price'], 0, ',', '.') }}
Qty: {{ $item['qty'] }}
Total: Rp{{ number_format($item['total_price'], 0, ',', '.') }}
Keranjang kosong
@endforelseTotal: Rp{{ number_format($cartTotal, 0, ',', '.') }}