@extends('admin.layouts.app') @section('content')

{{!empty($recovery) ? __('Recovery') : __("Airport")}}

@if(empty($recovery)) {{__("Add Airport")}} @endif
@include('admin.message')
@if(!empty($rows))
{{csrf_field()}}
@endif

{{__('Found :total items',['total'=>$rows->total()])}}

@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __('Name')}} {{ __('Date')}}
{{$row->name}} {{ display_date($row->updated_at)}} @if(empty($recovery)) {{__('Edit')}} @endif
{{__("No Airport found")}}
{{$rows->appends(request()->query())->links()}}
@endsection