@extends('layouts.dashboard') @section('title-content') {{ config('app.name') }} | Students Payments @endsection @section('content')

Registration Process - Payments for : {{ $semester1_fee->user->last_name . ',' . $semester1_fee->user->first_name . ' ' . $semester1_fee->user->middle_name . '(' . $semester1_fee->reg_no . ')' }}

Here below is the payments summary please fill in the amount paid by student.Click here to view min-financial statement

To add or delete student mean test please click the appropriate link  

{{ Form::checkbox('mean-test', old('mean-test'), null, ['id' => 'mean-test']) }} {!! Form::label('mean-test', 'Add/Update Mean Test') !!}
@if ($loan != null)

Loan Beneficiary

Sponsored Tuition Fee : {{ $srs->formatMoney($loan->tuition_fee) }}

Tuition fee to be paid by student : {{ $srs->formatMoney($semester1_fee->program->tuition_fee - $loan->tuition_fee) }}

Tuition fee Paid {{ $srs->formatMoney($total_fee_paid) }}
Direct Cost Paid {{ $srs->formatMoney($total_direct_cost_paid) }}
Outstanding Tuition fee {{ $fee_outstanding }}
Out Standing Direct Cost {{ $direct_cost_outstanding }}
@else
Tuition fee Paid {{ $srs->formatMoney($total_fee_paid) }}
Direct Cost Paid {{ $srs->formatMoney($total_direct_cost_paid) }}
Outstanding Tuition fee {{ $fee_outstanding }}
Out Standing Direct Cost {{ $direct_cost_outstanding }}
@endif
{{ $confirm_payments_link }}

Payments Made Through Banks

@if (!is_null($student_outstanding)) @foreach ($student_outstanding as $row) @endforeach
{{ $row->name }} {{ $srs->formatMoney($row->amount_paid) }} {{ $row->channel }}
@else
Nothing found!!
@endif
@endsection @section('scripts') @endsection