@extends('layouts.adminapp')
@section('title') {{ __('lng.StudentVehicleFeeReport') }} @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.SiNo') }} |
{{ __('lng.Student') }} |
{{ __('lng.Class') }} |
{{ __('lng.Vehicle') }} |
{{ __('lng.Route') }} |
{{ __('lng.Action') }} |
@php $i=0;@endphp
@foreach ($StudentVehicleDetails as $StudentVehicleDetail)
{{ ++$i }} |
{{ $StudentVehicleDetail->Student->name }} |
{{ $StudentVehicleDetail->Student->Class->title ?? __('lng.PassOut') }}
|
{{ $StudentVehicleDetail->Vehicle->name }} |
{{ $StudentVehicleDetail->Route->title }} |
|
@endforeach
@endsection