@extends('layouts.app') @section('title', 'Selesaikan Pembayaran Anda | Trisna Monel') @section('extra_css') @endsection @section('content')

Pengiriman & Pembayaran

Lengkapi formulir pengiriman di bawah untuk menghitung ongkos kirim otomatis

@if(session('error'))
{{ session('error') }}
@endif
@csrf

Informasi Penerima

Alamat Pengiriman

Jasa Ekspedisi

Menghitung tarif pengiriman...

Rincian Belanja

@foreach($cartItems as $item)
{{ $item->product->name }} x{{ $item->quantity }} @if($item->variation)
{{ $item->variation }}
@endif
Rp {{ number_format($item->product->getPriceForVariation($item->variation) * $item->quantity, 0, ',', '.') }}
@endforeach
Subtotal Rp {{ number_format($totalPrice, 0, ',', '.') }}
Total Berat {{ $totalWeight }} gram
Ongkos Kirim -
Total Tagihan Rp {{ number_format($totalPrice, 0, ',', '.') }}
@endsection @section('extra_js') @endsection