{{-- resources/views/customer/cart/index.blade.php --}} @extends('layouts.app') @section('title', 'My Cart - Chingu Bite') @section('content')

Shopping Cart

@if(session('success'))
{{ session('success') }}
@endif @if($cart && count($items) > 0)
Cart Items
@foreach($items as $item)
{{ $item['menu']['name'] }}
{{ $item['menu']['name'] }}

Rp {{ number_format($item['unit_price'], 0, ',', '.') }}

@csrf @method('PUT')
@csrf @method('DELETE')
Rp {{ number_format($item['subtotal'], 0, ',', '.') }}
@endforeach
@csrf @method('DELETE')
Order Summary
Subtotal: Rp {{ number_format($cart['subtotal'] ?? 0, 0, ',', '.') }}
Tax (10%): Rp {{ number_format($cart['tax_amount'] ?? 0, 0, ',', '.') }}
Service Fee: Rp {{ number_format($cart['service_fee'] ?? 0, 0, ',', '.') }}

Total: Rp {{ number_format($cart['total'] ?? 0, 0, ',', '.') }}
Proceed to Checkout
@else

Your cart is empty

Add some delicious Korean food to your cart!

Browse Menu
@endif
@endsection @section('scripts') @endsection