@extends('layouts.adminapp') @section('title') {{ __('lng.FeePaymentVoucher') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_voucher', 'open') @section('active_voucher', 'active') @section('fee_payment_voucher', 'active') @section('content')

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

{{ __('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