{{-- Payment method radios. $paymentMethods is Collection from CheckoutService::getPaymentMethods() (already filtered to enabled + driver-resolves + isConfigured()). Selecting one autosaves via bbk-payment#selectMethod; `data-payment-driver` tells the controller whether to mount the Stripe Element. $paymentMethods, $cart come from the page / controller. --}} @php($selected = $cart?->meta['payment_method'] ?? null) @if ($paymentMethods->isEmpty())

{{ __('checkout.page.payment_method_none') }}

@else
@foreach ($paymentMethods as $method) @endforeach
@endif