@if (count($modelVariableRemoved['pagination']) == 0)

No Data Found

@else @foreach($modelVariableRemoved['pagination'] as $j => $each) @if ($j >= ($currentPage - 1) * $perPage && $j < ($currentPage - 1) * $perPage + $perPage) @endif @endforeach
No Flight Type Airport From Airport To @lang("content.duration") (min) Distance (km) @lang("content.actions")
{{ $j + 1 }} {{ $each->flightType ? $each->flightType->type : "" }} {{ $each->fromAirport ? $each->fromAirport->iata : "" }} {{ $each->toAirport ? $each->toAirport->iata : "" }} {{ $each->duration }} {{ $each->distance }} {!! Form::open([ 'method' => 'POST', 'class' => 'inline', 'url' => url("/flight-route/restore/".$each->id) ]) !!} {!! Form::submit("Restore", ['class' => 'btn btn-primary btn-sm']) !!} {!! Form::close() !!}
@include('general.pager') {!! $modelVariableRemoved['pagination']->appends(request()->all())->render() !!} @endif