@extends('layouts.homepage.main') @section('content')
@if ($errors->has('error'))
{{ $errors->first('error') }}
@endif

Shipping Details

@csrf
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
@error('alamat_pelanggan') {{ $message }} @enderror
{{-- --}}

Your order

@foreach ($cartItems as $ci) @endforeach {{-- --}}
Product Total
{{ $ci->produk->nama_produk }} × {{ $ci->quantity }} Rp{{ number_format($ci->produk->harga_produk * $ci->quantity, 0, ',', '.') }}
Cart Subtotal £215.00
Order Total Rp{{ number_format($totalPrice, 0, ',', '.') }}

Pembayaran melalui

No. Rekening : 0830 0100 3815 500 (BRI)
Dana: 087788470428
Atas Nama : Meilina Suci Ardelia

@endsection @section('script') @endsection