@extends('admin.layouts.content') @section('content')
@include('components.card_header', ['title' => 'Maps', 'create_title' => 'New Map', 'create' => route('New Map')])
@forelse($maps as $map) @empty @endforelse
# Name No. of Maps Status Created By Created At Action
{!! $loop->iteration !!} {!! $map->name !!} {!! $map->attachments->count() !!} {!! $map->is_active ? 'Active' : 'Inactive' !!} {!! $map->created_at->format('F d, Y h:i A') !!} {!! $map->user->full_name !!} @include('components.edit', ['route' => route('Edit Map', ['id' => $map->id])])
No record(s) found.

@endsection