@extends('admin.layouts.app') @section('title', 'Routes') @section('content')
@php if (!empty($class)) { $x = $class; echo $x . ' CLASS '; } @endphp

Distance {{ \App\Models\Route::where(['id' => $id])->first()->distance }} KM


BUS CATEGORIES

@foreach ($classes as $i => $c) @if ($c->class == 1)

@csrf

@elseif($c->class == 2)

@csrf

@elseif($c->class == 3)

@csrf

@elseif($c->class == 4)

@csrf

@endif {!! Form::open([ 'style' => 'display: inline-block;', 'method' => 'GET', 'route' => ['Print Route', $id], ]) !!} {!! Form::submit('Print Route', ['class' => 'btn btn-sm btn-dark']) !!} {!! Form::close() !!} @endforeach
@include('admin.includes.alerts')
@csrf {{-- content field comes here --}}
@endsection