@extends('layouts.landing') @section('styles') @endsection @section('content')

Thank you for enrolling to

{!! $course->name !!}

Please proceed to pay {{ config('app.currency') }} {{ number_format($courseEnrollment->price) }} Inorder to secure your admission.


Pay by credit/debit card

Secure payment via stripe
@php $stripe_account_key = ''; $stripeAccount = App\Models\PaymentGatewayAccount::whereHas('paymentGateway', function($query){ $query->where('code', 'stripe'); })->orderBy('rank', 'ASC')->first(); if($stripeAccount){ $stripe_account_key = $stripeAccount->key; } @endphp @csrf
Connecting to secure gateway

Other Methods of Payment

    a). Bank Deposit
  • {{ config('app.name') }} A/C no. 1034969895 KCB Bank.
    b). M-PESA
  • Paybill no. 9989663. A/C: Student's Full name.
@endsection @section('scripts') @endsection