@extends('layouts.master') @section('page_title', 'Manage Payments') @section('content')
Manage Payment Records for {{ $sr->user->name}}
{!! Qs::getPanelOptions() !!}
@foreach($uncleared as $uc) {{--Amount--}} {{--Amount Paid--}} {{--Balance--}} {{--Pay Now Form--}} {{--Receipt No--}} {{--Action--}} @endforeach
# Title Pay_Ref Amount Paid Balance Pay Now Receipt_No Year Action
{{ $loop->iteration }} {{ $uc->payment->title }} {{ $uc->payment->ref_no }}{{ $uc->payment->amount }}{{ $uc->amt_paid ?: '0.00' }}{{ $uc->balance ?: $uc->payment->amount }}
@csrf
{{ $uc->ref_no }} {{ $uc->year }}
@foreach($cleared as $cl) {{--Amount--}} {{--Receipt No--}} {{--Action--}} @endforeach
# Title Pay_Ref Amount Receipt_No Year Action
{{ $loop->iteration }} {{ $cl->payment->title }} {{ $cl->payment->ref_no }}{{ $cl->payment->amount }}{{ $cl->ref_no }} {{ $cl->year }}
{{--Payments Invoice List Ends--}} @endsection