@extends('layouts.navigation') @section('content')
{{-- LEFT TABLE --}}
@php $grandTotal = 0; @endphp @foreach ($cart as $c) @php $total = $c->product->price * $c->quantity; $grandTotal += $total; @endphp @endforeach
Menu Harga Jumlah Subtotal
@csrf @method('DELETE')
{{ $c->product->name }}
{{ $c->product->name }}
{{ $c->product->weight ?? '500 g' }}
Rp{{ number_format($c->product->price) }}
@csrf
{{ $c->quantity }}
@csrf
Rp{{ number_format($total) }}
{{-- RIGHT SUMMARY --}}

Ringkasan Pesanan

Total Item {{ count($cart) }}
Total: Rp{{ number_format($grandTotal) }}

💳 Pembayaran dilakukan di tempat saat pengambilan pesanan

@csrf
@endsection