@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 Forma de pagamento Transferência Bancária Transferência Express {{-- BANK INFO --}} Banco de Fomento Angola IBAN: 0006.0000.1234.5678.1234.1 {{-- EXPRESS --}} Transferência Express: 948 159 330 Confirmar Pagamento @endsection