@extends('admin.layout.main') @section('title', 'Dashboard') @push('content')
{{--
--}}

AirCraft Inventory Listing

@forelse($aircrafts as $aircraft) @empty @endforelse
Title image Manufacturer Model Serial Number Total Hours Year of Manufacture Registration Number Base Location Action
{{ $aircraft->title }} {{-- @if ($aircraft->media) main_img @endif--}} {{ $aircraft->manufacturer->name ?? '' }} {{ $aircraft->manufacturerModel->name ?? '' }} {{ $aircraft->serial_number }} {{ $aircraft->total_hours }} {{ $aircraft->year_of_manufacture }} {{ $aircraft->registration_number }} {{ $aircraft->base_location }}
No records found.
@if(request()->has('category')) {{ $aircrafts->appends(['category' => request()->get('category')])->links('vendor.pagination.bootstrap-4') }} @else {{ $aircrafts->links('vendor.pagination.bootstrap-4') }} @endif
@endpush