@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: {{ $services->filter(fn($s) => !empty($s->meta_title))->count() }}
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')
@if($services->hasPages())
{{ $services->links() }}
@endif
@endsection