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

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

{{ __('lng.VehicleTable') }}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach ($StudentVehicles as $StudentVehicle) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Name') }} {{ __('lng.Number') }} {{ __('lng.Narration') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $StudentVehicle->name }} {{ $StudentVehicle->number }} {{ $StudentVehicle->narration }}
@csrf @method('delete')

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

@endif
@endsection