@extends('admin.layouts.app') @section('title', 'SEO Master Manager') @section('page-title', 'Search Engine Optimization') @section('content')
{{-- SEO Health Overview & Sitemap --}}

Sitemap Management

Your sitemap is automatically generated and synchronized with your content. You can submit these URLs to Google Search Console.

Sitemap Index

sitemap_index.xml

View Index

Main Content Sitemap

sitemap.xml

View Sitemap

Search Console

Submit your sitemap index at:

https://www.theultimateautocare.com/sitemap_index.xml

Google Indexing

Healthy & Reachable
{{-- SEO Management Tabs --}}
{{-- Tracking Tab --}}

Tracking & Integrations

@csrf

This code will be injected before the closing </head> tag.

{{-- Schema Tab --}}

Local Business Schema (JSON-LD)

@csrf
{{-- Pages Tab --}}
@foreach($pages as $page)

{{ $page->title }}

/{{ $page->slug }}

@endforeach
{{-- Services Tab --}}
@foreach($services as $service)

{{ $service->title }}

/service/{{ $service->slug }}

@endforeach
{{-- Blogs Tab --}}
@foreach($blogs as $blog)

{{ $blog->title }}

/blog/{{ $blog->slug }}

@endforeach
{{-- Cars Tab --}}
@foreach($cars as $car)

{{ $car->make }} {{ $car->model }}

/car/{{ $car->slug }}

@endforeach
@endsection