@forelse($methods as $method)
{{ $method->name }}

{{ $method->account_title ?: 'MGG Agency' }}

{{ $method->account_number ?: 'Account details pending' }}

@if($method->bank_name)

{{ $method->bank_name }}

@endif @if($method->instructions)

{{ $method->instructions }}

@endif @if($method->qr_code)

View QR Code

@endif
@empty
No active payment method is available. Please contact support.
@endforelse
@csrf

@include('partials.payment-table', ['payments' => $payments])