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

{{ $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 ($PayFees as $PayFee) @php $date = date("F-d-Y",strtotime($PayFee->date));@endphp @endforeach
{{__('lng.SiNo')}} {{__('lng.Date')}} {{__('lng.BatchYear')}} {{__('lng.Amount')}} {{__('lng.Head')}}
{{++$i}} {{$date}} {{$PayFee->batch_year}} @currency($PayFee->amount) {{$PayFee->payhead->title}}
@endsection