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

Detail Penagihan

@csrf
@php $total_belanja = 0; @endphp @foreach($cart as $details) @php $total = $details['price'] * $details['quantity']; $total_belanja += $total; @endphp @endforeach
Produk Nama Jml Total
{{ $details['name'] }} {{ $details['quantity'] }} Rp {{ number_format($total, 0, ',', '.') }}

Subtotal

Rp {{ number_format($total_belanja, 0, ',', '.') }}

Pengiriman

TOTAL

Rp {{ number_format($total_belanja + 10000, 0, ',', '.') }}

@endsection