@extends('layouts.app') @section('title', 'Transactions — ' . $student->name) @section('content') {{-- Header --}}
Transactions
{{ $student->name }}
{{-- Student info card --}}
Student ID: {{ $student->unique_id }}
Trade: {{ $student->trade?->name ?? '—' }}
Session: {{ $student->session ? $student->session->year_from . ' – ' . $student->session->year_to : '—' }}
Branch: {{ $student->branch?->name ?? '—' }}
{{-- Transactions table --}}
# Reason Month Amount (₹) Pending (₹) Final Amount (₹) Added By Date Actions
@include('transactions.modals') @endsection @push('scripts') @endpush