@extends('layouts.user') @section('title', 'Keranjang') @section('content')

🛒 Keranjang Belanja

@if($cartItems->isEmpty())

Keranjang kosong 😋

@else @php $grandTotal = 0; @endphp @foreach ($cartItems as $item) @php // Antisipasi item cart yang kehilangan relasi pizza $pizza = $item->pizza; $total = $pizza ? ($pizza->harga * $item->jumlah) : 0; $grandTotal += $total; @endphp @endforeach
Pizza Jumlah Harga (Satuan) Total Harga Aksi
{{ $pizza->nama ?? 'Produk sudah dihapus' }} {{ $item->jumlah }} {{ $pizza ? 'Rp ' . number_format($pizza->harga, 0, ',', '.') : '-' }} {{ $pizza ? 'Rp ' . number_format($total, 0, ',', '.') : '-' }}
@csrf @method('DELETE')

Total Belanja: Rp {{ number_format($grandTotal, 0, ',', '.') }}

Checkout 📦
@endif
@endsection