{{-- resources/views/public/confirmation-payment-form.blade.php --}} @php // Get theme fonts from active preset $headingFont = 'Inter'; $bodyFont = 'Inter'; if ($website && $website->activeTheme && $website->activeTheme->theme) { $defaultPreset = $website->activeTheme->theme->presets()->where('is_default', true)->first(); if ($defaultPreset && isset($defaultPreset->font_scheme)) { $headingFont = $defaultPreset->font_scheme['heading'] ?? 'Inter'; $bodyFont = $defaultPreset->font_scheme['body'] ?? 'Inter'; } } // Build Google Fonts URL dynamically $fontsToLoad = []; if ($headingFont !== 'Default') { $fontsToLoad[] = str_replace(' ', '+', $headingFont) . ':wght@300;400;500;600;700;800;900'; } if ($bodyFont !== 'Default' && $bodyFont !== $headingFont) { $fontsToLoad[] = str_replace(' ', '+', $bodyFont) . ':wght@300;400;500;600;700;800;900'; } $googleFontsUrl = 'https://fonts.googleapis.com/css2?family=' . implode('&family=', $fontsToLoad) . '&display=swap'; @endphp Payment Confirmation - {{ $website->name }} @if($website->theme) @endif @if(count($fontsToLoad) > 0) @endif @php $headerSection = $website->globalSections()->where('type', 'header')->where('is_default', true)->first(); @endphp @if($headerSection) @if($headerSection->builder_data)
{!! $headerSection->renderBuilderContent() !!}
@elseif($headerSection->builder_v2_data)
@include('global-sections.render-v2', ['section' => $headerSection])
@endif @endif
@if(session('success')) @endif @if(request()->query('success')) @endif @if(request()->query('pending')) @endif

Payment Received!

Thank you for your payment. Your transaction has been completed successfully.

Transaction #{{ $order->order_number }}
Payment Details
Transaction Number:
{{ $order->order_number }}
Date & Time:
{{ $order->created_at->format('F j, Y \a\t g:i A') }}
Payment Method:
@switch($order->payment_method) @case('chipin') Online Payment @break @case('bank_transfer') Bank Transfer @break @case('cash_on_delivery') Cash Payment @break @default {{ ucfirst(str_replace('_', ' ', $order->payment_method)) }} @endswitch
Status:
{{ ucfirst($order->payment_status) }}
Amount Paid: {{ $website->getCurrencySymbol() }} {{ number_format($order->total_amount, 2) }}
@if($order->payment_reference)
Payment Reference:
{{ $order->payment_reference }}
@endif
Payer Information
Name:
{{ $order->customer_name }}
Email:
{{ $order->customer_email }}
@if($order->customer_phone)
Phone:
{{ $order->customer_phone }}
@endif @if($order->customer_tin)
TIN:
{{ $order->customer_tin }}
@endif
@if($order->notes)
Payment Notes

{{ $order->notes }}

@endif
Back to Home
What's Next?
  • Email Confirmation
    A payment confirmation has been sent to your email address.
  • Keep Your Receipt
    Print or save this page for your records.
  • Need Help?
    Contact us if you have any questions about your payment.
@php $footerSection = $website->globalSections()->where('type', 'footer')->where('is_default', true)->first(); @endphp @if($footerSection) @if($footerSection->builder_data) @elseif($footerSection->builder_v2_data) @endif @endif