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