@extends('layouts.guest-layouts.guest-payment', ['pageTitle' => $pageTitle ?? 'Validate Payment Code']) @section('more-styles') @stop @section('side-box-content')

A mail has been sent to your email address with the bill, please check for the payment code

Billing Details


Payment Code #{{ $invoice->payment_code}}
Bill Description {{ $invoice->description}}
Billed To {{ $invoice->customer_name ?? $invoice->applicantFullName() }}
Ministry {{ $invoice->ministryName() }}
Service {{ $invoice->serviceName() }}
Bill Date {{ $invoice->created_at->format('jS F, Y') }}
Bill Number #{{ str_pad($paymentDetails->application_entry_id, 4, 0, STR_PAD_LEFT) }}
Billed Amount {{ number_format($invoice->invoice_amount, 2) }}
Payment Status {{ $paymentStatus }}
{{----}}
@stop @section('content')

Enter Your @if(!$paymentCode) Payment Code and @endif Details Below to Begin


@csrf
@error('payment_code') {{ $message }} @enderror
@error('first_name') {{ $message }} @enderror
@error('last_name') {{ $message }} @enderror
@error('email_address') {{ $message }} @enderror
@error('phone_number') {{ $message }} @enderror
@if(!$fullyPaid) @if($allowEditAmount && $revenueItems->count() > 1) @foreach($revenueItems as $revenueItem) @php $itemAmountRemaining = $revenueItem->invoice_amount - $revenueItem->amount_paid; $iteration = $loop->iteration; @endphp @endforeach
S/N Revenue Details Amount
{{$loop->iteration}} {{ $revenueItem->revenue_code->name }} ({{ $revenueItem->revenue_code->revenue_code }}) checked : 'checked' }} style="visibility:unset" data-revenue-item-id="{{ $revenueItem->id }}" class="revenue-item-checkbox" name="revenue_items[{{ $iteration }}][checked]"/>
@else
@endif
@if($preventEdutamsService)

Web payments have been temporarily disabled for this service, please visit your school to pay with POS.

@endif @if($invoiceMinistryID != $eduScienceMinistryId)
@endif
@error('payment_method') {{ $message }} @enderror
@endif
@stop @section('more-scripts') @endsection