@extends('layouts.adminapp')
@section('title') {{ __('lng.VehicleFeeVoucher') }} @endsection
@section('active_report', 'active')
@section('open_report', 'open')
@section('open_voucher', 'open')
@section('active_voucher', 'active')
@section('vehicle_fee_voucher', 'active')
@section('content')
{{ __('lng.SiNo') }} |
{{ __('lng.StudentName') }} |
{{ __('lng.Class') }} |
{{ __('lng.Invoice') }} |
{{ __('lng.Date') }} |
{{ __('lng.Head') }} |
{{ __('lng.Amount') }} |
@php $si=$Total=0; @endphp
@foreach ($VehiclePayFeePaginations as $VehiclePayFeePagination)
@php $DTs = date("F-d-Y",strtotime($VehiclePayFeePagination->date));@endphp
{{ ++$si }} |
{{ $VehiclePayFeePagination->Student->name ?? '' }} |
{{ $VehiclePayFeePagination->Student->Class->title ?? '' }} |
{{ $VehiclePayFeePagination->invoicenumber }} |
{{ $DTs }} |
{{ $VehiclePayFeePagination->payhead->title ?? '' }} |
@currency($VehiclePayFeePagination->amount ?? '0') |
@endforeach
@foreach ($VehiclePayFees as $Amount)
@php
$Total += $Amount->amount;
@endphp
@endforeach
{{ __('lng.TotalAmount') }} |
@currency($Total) |
@endsection