@extends('layouts.adminapp') @section('title') {{ __('lng.StudentReport') }} - {{ __('lng.PayHistoryReport') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_student_report', 'open') @section('active_student_report', 'active') @section('active_student_report_index', 'active') @section('content')

{{ __('lng.PayHistoryReport') }}

{{ $Student->name }}
{{ __('lng.Back') }}

{{ $Student->place }} {{ $Student->mobile }} {{ $Student->Class->title ?? __('lng.PassOut') }}

@if ($Balance > 0)

{{ __('lng.BalanceAmount') }}

@currency($Balance)

@else

{{ __('lng.AdvanceAmount') }}

@currency(abs($Balance))

@endif

{{ __('lng.BatchYear') }}

{{ $Student->batch_year }}

@php $i=0;@endphp @foreach ($PayFees as $PayFee) @php $date = date("F-d-Y",strtotime($PayFee->date));@endphp @endforeach
{{__('lng.SiNo')}} {{__('lng.Date')}} {{__('lng.BatchYear')}} {{__('lng.Amount')}} {{__('lng.Head')}}
{{++$i}} {{$date}} {{$Student->batch_year}} @currency($PayFee->amount) {{$PayFee->payhead->title}}
@endsection