@extends('admin.layouts.app') @section('title', 'Project Location Map') @section('breadcrumb')
  • Projects
  • Project Location Map
  • @endsection @section('heading', 'Project Location Map') @section('subheading', 'Manage project locations and map coordinates.') @section('actions') Add Project @endsection @section('content')
    @forelse($projects as $project) @empty @endforelse
    Project City State Address Coordinates Actions
    {{ $project->title }} {{ $project->city ?? '—' }} {{ $project->state ?? '—' }} {{ $project->address ? Str::limit($project->address, 40) : '—' }} @if($project->latitude && $project->longitude) {{ $project->latitude }}, {{ $project->longitude }} @else — @endif Edit
    No projects yet. Add one.
    @if ($projects->hasPages())

    Showing {{ $projects->firstItem() ?? 0 }} to {{ $projects->lastItem() ?? 0 }} of {{ $projects->total() }} results

    {{ $projects->links() }}
    @endif
    @endsection