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

Flight Management Active Flights

@foreach($flights as $flight) @endforeach
Flight Code Airline Code Flight Type Created At @lang('labels.general.actions')
{{ $flight->code }} {{ $flight->airline->code }} {{ ucfirst($flight->type) }} {{ $flight->created_at->diffForHumans() }} {!! $flight->action_buttons !!}
{!! $flights->total() !!} {{ trans_choice('labels.backend.access.users.table.total', $flights->total()) }}
{!! $flights->render() !!}
@endsection