@extends('layouts.adminapp')
@section('title') {{ __('lng.MonthlyReport') }} - {{ __('lng.Print') }} @endsection
@section('active_report', 'active')
@section('open_report', 'open')
@section('open_student_report', 'open')
@section('active_student_report', 'active')
@section('active_student_vehicle_fee_report', 'active')
@section('content')
@include('PrintHeader.header')
{{__('lng.StudentVehicleDetails')}}
{{__('lng.Name')}} |
{{__('lng.Class')}} |
{{__('lng.Vehicle')}} |
{{__('lng.VehicleNumber')}} |
{{__('lng.Route')}} |
{{$Student->name}} |
{{$Student->Class->title ?? __('lng.PassOut')}} |
{{$RouteAssign->Vehicle->name}} |
{{$RouteAssign->Vehicle->number}} |
{{$RouteAssign->Route->title}} |
{{__('lng.MonthlyVehicleFeeReport')}}
{{__('lng.SiNo')}} |
{{__('lng.Month')}} |
{{__('lng.BatchYear')}} |
{{__('lng.Amount')}} |
{{__('lng.AdditionalCharge')}} |
{{__('lng.TotalAmount')}} |
{{__('lng.PaidFee')}} |
@php $i=0;@endphp
@foreach ($Payables as $Payable)
@php $Month = date("F-Y",strtotime($Payable['month']));@endphp
{{++$i}} |
{{$Month}} |
{{$Payable['BatchYear']}} |
@currency($Payable['amount']) |
@currency($Payable['AdditionalAmount']) |
@currency($Payable['PyableAmount']) |
@currency($Payable['PayAmount']) |
@endforeach
@if ($Balance > 0)
{{__('lng.BalanceAmount')}}
@else
{{__('lng.Advance')}}
@endif
|
@currency(abs($Balance)) |
@endsection