@extends('layouts.user') @section('head') @endsection @section('content')

{{!empty($recovery) ?__('Recovery Flights') : __("Manage Flights")}} @if(Auth::user()->hasPermissionTo('flight_create')&& empty($recovery)) {{__("Add Flight")}} @endif

@include('admin.message') @if($rows->total() > 0)
{{ __("Showing :from - :to of :total Flights",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }} {{$rows->appends(request()->query())->links()}}
@foreach($rows as $row)
@include('Flight::frontend.manageFlight.loop-list')
@endforeach
{{ __("Showing :from - :to of :total Flights",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }} {{$rows->appends(request()->query())->links()}}
@else {{__("No Flight")}} @endif @endsection @section('footer') @endsection