@extends('layouts.app') @section('content')
This student doesn't have an active payment profile. Please create one first through the promotions system.
Name: {{ $student->first_name }} {{ $student->last_name }}
Class: {{ $activeProfile->promotion->schoolClass->class_name ?? 'N/A' }}
Section: {{ $activeProfile->promotion->section->section_name ?? 'N/A' }}
Payment Type: @if($activeProfile->payment_type == 0) Free Student @elseif($activeProfile->payment_type == 1) Monthly Payment @else Annual Payment @endif
Session: {{ $activeProfile->schoolSession->session_name ?? 'N/A' }}
This student has paid all their fees. No payment needed at this time.
| Receipt # | Date | Type | Amount | Method | 
|---|---|---|---|---|
| {{ $transaction->transaction_number }} | {{ $transaction->transaction_date->format('d M Y') }} | @if($transaction->transaction_type == 1) Admission @elseif($transaction->transaction_type == 2) Monthly @else Annual @endif | {{ number_format($transaction->amount_paid, 2) }} PKR | @if($transaction->payment_method == 1) Cash @elseif($transaction->payment_method == 2) Cheque @elseif($transaction->payment_method == 3) Bank Transfer @else Online @endif |