@extends('layouts.adminapp') @section('content')
@include('PrintHeader.header')

{{__('lng.FeePaymentVoucherReport')}}
@php $si=$Total=0; @endphp @foreach ($PayFees as $PayFee) @php $DTs = date("F-d-Y",strtotime($PayFee->date));@endphp @php $Total+=$PayFee->amount; @endphp @endforeach
{{__('lng.SiNo')}} {{__('lng.StudentName')}} {{__('lng.Class')}} {{ __('lng.Invoice') }} {{ __('lng.Date') }} {{ __('lng.Head') }} {{ __('lng.Amount') }}
{{ ++$si }} {{ $PayFee->Student->name ?? '' }} {{ $PayFee->Student->Class->title ?? '' }} {{ $PayFee->invoicenumber }} {{ $DTs }} {{ $PayFee->payhead->title ?? '' }} @currency($PayFee->amount ?? '0')
{{ __('lng.Total') }} @currency($Total)
{{__('lng.Back')}}
@endsection