@extends('layouts.app') @section('content')
{{-- ================= PRODUTOS ================= --}}

🛒 Resumo do Pedido

@foreach($cart->items as $item) @php $subtotal = $item->price * $item->quantity; @endphp
{{ $item->product->name }}
Qtd: {{ $item->quantity }} × {{ number_format($item->price,0,',','.') }} Kz
{{ number_format($subtotal,0,',','.') }} Kz
@endforeach
Total: {{ number_format($total,0,',','.') }} Kz
{{-- ================= FORM ================= --}}

💳 Finalizar Compra

@csrf {{-- BANK INFO --}} {{-- EXPRESS --}}
@endsection