@extends('admin.layouts.app') @section('title', 'Service Management') @section('page-title', 'Automotive Services') @section('content')

Manage your automotive service offerings and their SEO content.

Total: {{ count($services) }}
Optimized: {{ count(array_filter($services, fn($s) => !empty($s->meta_title))) }}
Add New Service
@foreach($services as $service) @endforeach
Service URL Slug SEO Score Status Actions

{{ $service->title }}

{{ Str::limit($service->description, 40) }}

/service/{{ $service->slug }}
{{ $service->meta_title && $service->meta_description ? 'Optimized' : 'Needs Meta' }}
{{ $service->is_active ? 'Active' : 'Hidden' }}
@csrf @method('DELETE')
@endsection