@extends('layouts.shop') @section('title', 'Checkout - O Rei dos Queijos') @section('content')
Checkout

Finalizar Encomenda

@csrf

1 Dados do Cliente

2 Método de Entrega

3 Método de Pagamento

@foreach(['mbway' => 'MB WAY', 'multibanco' => 'Referência Multibanco', 'stripe' => 'Cartão de Crédito (Stripe)'] as $value => $label) @endforeach

Resumo

    @foreach($items as $item)
  • {{ $item['name'] }} × {{ $item['quantity'] }}{{ $item['unit_type'] === 'kg' ? 'kg' : '' }} {{ number_format($item['line_total'], 2, ',', '.') }} €
  • @endforeach

Subtotal {{ number_format($subtotal, 2, ',', '.') }} €
Portes (a calcular) -

Total {{ number_format($subtotal, 2, ',', '.') }} €
@endsection