@extends('adminlte::page') @section('title', 'View Payment') @section('content_header')

Payment Details

@stop @section('content')
Student: {{ $payment->studentBill->student->name ?? '-' }}

Bill: {{ $payment->studentBill->bill->title ?? '-' }}

Amount: TZS {{ number_format($payment->amount, 2) }}

Method: {{ $payment->payment_method ?? '-' }}

Reference: {{ $payment->reference ?? '-' }}

Date: {{ \Carbon\Carbon::parse($payment->payment_date)->format('d M Y H:i') }}

Recorded By: {{ $payment->user->name ?? 'System' }}

Back View Receipt
@stop