@extends('layouts.student') @section('title', 'Fee Statement') @section('content')
Registration Number: {{ $student->registration_number }}
Name: {{ $student->first_name }} {{ $student->last_name }}
Programme: {{ $programme->description }}
Mode: {{ $programme->attendance_mode }}
Duration: {{ $programme->duration }}
Status: {{ $programme->status }}
| Date | Description | Debit ($) | Credit ($) | Running Balance ($) |
|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($tx->date)->format('d M Y') }} | {{ $tx->description }} | {{ $debit > 0 ? number_format($debit, 2) : '' }} | {{ $credit > 0 ? number_format($credit, 2) : '' }} | {{ number_format($runningBalance, 2) }} |