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

@include('PrintHeader.header')

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

@php $i=0;@endphp @foreach ($StudentVehicleDetails as $StudentVehicleDetail) @endforeach
{{__('lng.SiNo')}} {{__('lng.Student')}} {{__('lng.Class')}} {{__('lng.Vehicle')}} {{__('lng.Route')}}
{{++$i}} {{ $StudentVehicleDetail->Student->name }} {{ $StudentVehicleDetail->Student->Class->title }} {{ $StudentVehicleDetail->Vehicle->name }} {{ $StudentVehicleDetail->Route->title }}
{{ __('lng.Back') }}
@endsection