@extends('layouts.adminapp') @section('content') {{-- Subscription Payment Report --}}
{{ __('lng.FeePaymentVoucherReport') }}
@php $si=$Total=0; @endphp @foreach ($PayFeePaginations as $PayFeePagination) @php $DTs = date("F-d-Y",strtotime($PayFeePagination->date));@endphp @endforeach
{{__('lng.SiNo')}} {{__('lng.StudentName')}} {{__('lng.Class')}} {{ __('lng.Invoice') }} {{ __('lng.Date') }} {{ __('lng.Head') }} {{ __('lng.Amount') }}
{{ ++$si }} {{ $PayFeePagination->Student->name ?? '' }} {{ $PayFeePagination->Student->Class->title ?? '' }} {{ $PayFeePagination->invoicenumber }} {{ $DTs }} {{ $PayFeePagination->payhead->title ?? '' }} @currency($PayFeePagination->amount ?? '0')
@foreach ($PayFees as $Amount) @php $Total += $Amount->amount; @endphp @endforeach
{{__('lng.TotalAmount')}} @currency($Total)
@endsection