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