@extends('layouts.adminapp') @section('title') {{ __('lng.StudentVehicleFee') }} @endsection @section('active_student_vehicle', 'active') @section('open_student_vehicle', 'open') @section('active_student_vehicle_fee', 'active') @section('content')

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

{{ __('lng.StudentVehicleFeeTable') }}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach ($StudentVehicleFees as $StudentVehicleFee) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Student') }} {{ __('lng.Class') }} {{ __('lng.Vehicle') }} {{ __('lng.Route') }} {{ __('lng.Amount') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $StudentVehicleFee->Student->name }} {{ $StudentVehicleFee->Student->Class->title ?? __('lng.PassOut') }} {{ $StudentVehicleFee->Vehicle->name }} {{ $StudentVehicleFee->Route->title }} @currency($StudentVehicleFee->amount)
@csrf @method('delete')

{{ __('lng.Showing') }} {{ $StudentVehicleFees->count() }} {{ __('lng.Items') }}

@endif
@endsection