@if(Session::has('alert'))
@endif
@foreach ($statistics->totals as $currency => $total)
  • @lang('tr.Required')
  • {{$total}} {{ $currency }}

@endforeach
  • @lang('tr.Credit')
  • {{ $student->financialCredit() }} {{ \App\StudentFee::CURRENCY_EGP }}

@if($feesCredit>0)
  • @lang('tr.Fees Credit')
  • {{ $feesCredit }} {{ \App\StudentFee::CURRENCY_EGP }}

@endif
@if(count($statistics->totals)>0)
@csrf
@endif @php($methodsList = 'App\StudentFee'::methodsList()) @php($statusList = 'App\StudentFee'::statusList())
@foreach($payments as $payment) @php($color = "") @if($payment->isDue()) @php($color = "color: red;" ) @endif @endforeach
# Term @lang('tr.Type') @lang('tr.Payment') @lang('tr.Status')
{{$payment->id}} {{$payment->term_name}} {{$payment->service_name}} @lang('tr.Amount'): {{$payment->paid}} of {{$payment->amount}} {{ $payment->currency }}
@lang('tr.Method'): {{$methodsList[$payment->method]}}
@lang('tr.Due Date'): {{$payment->due_date}}
@if($payment->currency_preference) @lang('tr.Currency Preference'): {{ $payment->currency_preference }} ({{ $payment->preferred_amount }})
@endif @if($student->isPostgraduate()) @lang('tr.Notes'): @if($payment->notes)
@if(isMultilineText($payment->notes)) {!! formatMultilineList($payment->notes) !!} @else {{$payment->notes}} @endif
@endif @endif @if($payment->canChangeCurrencyPreference())
@lang('tr.CHEP UEL unpaid tuition fees message')
@endif
@if($payment->status=='App\StudentFee'::STATUS_UNPAID) {{$statusList[$payment->status]}} @elseif($payment->status=='App\StudentFee'::STATUS_PARTIALLY_PAID) {{$statusList[$payment->status]}} @elseif($payment->status=='App\StudentFee'::STATUS_FREEZE) {{$statusList[$payment->status]}} @else {{$statusList[$payment->status]}} @endif @if($payment->canChangeCurrencyPreference()) @endif