@extends('layouts.user.app') {{-- @include('layouts.user.header') --}} @section('content')

Checkout

Detail Pesanan

@foreach($cartItems as $item)

{{ $item->menu->name }}

{{ $item->quantity }}x @ Rp {{ number_format($item->price, 0, ',', '.') }}

Rp {{ number_format($item->subtotal, 0, ',', '.') }}

@endforeach

Subtotal

Rp {{ number_format($totals['subtotal'], 0, ',', '.') }}

Pajak (10%)

Rp {{ number_format($totals['tax'], 0, ',', '.') }}

Service Charge (5%)

Rp {{ number_format($totals['service'], 0, ',', '.') }}

Total

Rp {{ number_format($totals['final'], 0, ',', '.') }}

@csrf

Informasi Pembayaran

@endsection