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

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

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

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

@endif
@endsection