@extends('backend.layouts.app') @section('title', app_name() . ' | Airport Management') @section('breadcrumb-links') @endsection @section('content')

Airport Management Active Airports

@foreach($airports as $airport) @endforeach
Airport Code Airport Airport Nepali Created At @lang('labels.general.actions')
{{ $airport->code }} {{ $airport->title }} {{ $airport->title_nepali }} {{ $airport->created_at->diffForHumans() }} {!! $airport->action_buttons !!}
{!! $airports->total() !!} {{ trans_choice('labels.backend.access.users.table.total', $airports->total()) }}
{!! $airports->render() !!}
@endsection