@extends('layouts.frontend') @section('title', 'Checkout') @section('content')

Konfirmasi Pembelian

@csrf @if (count($items) == 1 && request()->has('produk_id')) @endif
Daftar Barang
    @foreach ($items as $item)
  • {{ $item->nama_produk }}
    {{ $item->jumlah }} x Rp {{ number_format($item->harga, 0, ',', '.') }}
    Rp {{ number_format($item->subtotal, 0, ',', '.') }}
  • @endforeach
  • Total (IDR) Rp {{ number_format($total_belanja, 0, ',', '.') }}
Metode Pembayaran
Kembali
@endsection