@extends('layouts.adminapp') @section('title') {{ __('lng.StudentVehicleFeeReport') }} - {{ __('lng.MonthlyReport') }} @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')

{{ __('lng.MonthlyReport') }}

{{ $Student->name }}
{{ __('lng.Back') }}

{{ $Student->place }} {{ $Student->mobile }} {{ $Student->Class->title ?? '' }} {{ $StudentVehicleRouteAssign->Vehicle->name ?? '' }}

@if ($Balance > 0)

{{ __('lng.BalanceAmount') }}

@currency($Balance)

@else

{{ __('lng.AdvanceAmount') }}

@currency(abs($Balance))

@endif

{{ __('lng.BatchYear') }}

{{ $Student->batch_year }}

{{ __('lng.Route') }}

{{ $StudentVehicleRouteAssign->Route->title ?? '' }}

@php $i=0;@endphp @foreach ($Payables as $Payable) @php $Month = date("F-Y",strtotime($Payable['month']));@endphp @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Month') }} {{ __('lng.BatchYear') }} {{ __('lng.Amount') }} {{ __('lng.AdditionalCharge') }} {{ __('lng.TotalAmount') }} {{ __('lng.PaidFee') }}
{{ ++$i }} {{ $Month }} {{ $Payable['BatchYear'] }} @currency($Payable['amount']) @currency($Payable['AdditionalAmount']) @currency($Payable['PyableAmount']) @currency($Payable['PayAmount'])
@endsection