@extends('layouts.app') @section('title', 'Tuition and Fees - Thriving Lives') @section('content')

Diploma in Marriage and Family Counseling

Application Fee: $25 (Non-refundable)

Tuition (First Year): $450 per semester

Tuition (Second Year): $450

Exam Fees: To Be Announced (TBA) by HEXCO

USA Certified Marriage & Family Counselor

Tuition: $250 or R4500

Flexible payment options are available.

Registration Deadline: Sat. 24 January 2025


Payment & Banking Details

@php // Manually fetching banking details as we are not in the AdmissionsController $bankingDetails = [ 'registration' => [ 'acc_name' => 'Tendayi Anna Phiri', 'acc_num' => '9140001473692', 'bank_name' => 'Stanbic Bank', 'header' => 'Registration Fee ($25)' ], 'tuition_fnb' => [ 'acc_name' => 'Thriving Lives Coaching and Counselling Center (Pty) Ltd', 'bank_name' => 'FNB', 'acc_num' => '63007776787', 'branch_code' => '250655', 'branch_name' => 'Constantia Kloof', 'swift_code' => 'FIRNZAJJ', 'header' => 'Tuition Fee (FNB Account)' ] ]; @endphp @foreach($bankingDetails as $detail)
{{ $detail['header'] }}

Account Name: {{ $detail['acc_name'] }}

Bank: {{ $detail['bank_name'] }}

Account Number: {{ $detail['acc_num'] }}

@if(isset($detail['branch_code']))

Branch Code: {{ $detail['branch_code'] }}

@endif @if(isset($detail['branch_name']))

Branch Name: {{ $detail['branch_name'] }}

@endif @if(isset($detail['swift_code']))

Swift Code: {{ $detail['swift_code'] }}

@endif
@endforeach
@endsection @push('styles') @endpush