@extends($activeTheme.'layouts.main') @section('title', ___('Payment')) @section('content')

{{___('Payment')}}

@csrf

{{___('Payment Method')}}

@if(\Session::get('quick_alert_message'))
{{ \Session::get('quick_alert_message') }}
@endif @if(!empty($paymentGateways))
@foreach ($paymentGateways as $paymentGateway)
id) checked @endif>
@if($paymentGateway->payment_folder == 'paystack')
@else

{{ ___('You will be redirected to the payment page for complete payment.') }}

@endif
@endforeach
@else
{{ ___('No payment methods available right now please try again later.') }}
@endif

{{ ___('Order Summary') }}

  • {{ ___('Order') }} {{ $transaction->product_name }}
  • {{ ___('Details') }} {{ $transaction->transaction_description }}
  • {{ ___('Price') }} {{ price_symbol_format($transaction->base_amount) }}
  • {{ ___('Total Cost') }} {{ price_code_format($transaction->amount) }}
@endsection @push('scripts_at_bottom') @endpush