Coaching payment status
@if ($payment->status === 'paid' && $inquiry?->scheduled_for)

You're booked

{{ $inquiry->scheduled_for->format('l j F') }}
at {{ $inquiry->scheduled_for->format('g:i A') }} EAT

A confirmation is on its way to {{ $inquiry->email }}. We will call you or send a video link shortly before the session. Need to change the time? WhatsApp us on 0112 440 122.

@elseif ($payment->status === 'paid')

Payment verified

Choose your session time.

Your KES {{ number_format($payment->amountMajor()) }} discovery call is confirmed. Pick the day and time that suits you, we take calls Monday to Saturday.

@csrf
@foreach ($slots as $slot) @endforeach
@error('date')

{{ $message }}

@enderror @error('slot')

{{ $message }}

@enderror
@elseif ($payment->status === 'failed')

Payment not completed

Your intake is still saved.

{{ $payment->failure_reason ?: 'No charge was confirmed. You can safely try another method.' }}

Return to coaching @else

Waiting for confirmation

Almost there.

{{ session('checkout_message', 'The payment provider has not confirmed this transaction yet. This page will check again automatically.') }}

Reference{{ $payment->reference }}
AmountKES {{ number_format($payment->amountMajor(), 2) }}
@push('scripts') @endpush @endif