@extends('backend.admin.layouts.app') @section('title', 'Payment Transactions') @section('content')

Transaction History for: {{ $student->fullNameInEnglish }}

@forelse($transactions as $index => $tx) @empty @endforelse
# Mobile Amount Transaction ID Due Amount Date Invoice
{{ $index + 1 }} {{ $tx->payment_mobile }} {{ number_format($tx->payment_amount, 2) }} {{ $tx->transaction_id }} {{ number_format($tx->due_amount, 2) }} {{ \Carbon\Carbon::parse($tx->created_at)->format('d M Y, h:i A') }} Print
No transactions found.
@endsection