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

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