@extends('garage.layouts.app') @section('title', 'Service Groups') @push('styles') @include('shared.garage-summary-ui-styles') @endpush @section('content')

Service Groups

Use groups as parent dropdown for Services.

Add service group
@if(($search ?? '') || ($status ?? 'all') !== 'all') @endif
@forelse($serviceGroups as $group) @empty @endforelse
Name Code Description Status Actions
{{ $group->name }}
{{ $group->code ?? '-' }} {{ $group->description ? \Illuminate\Support\Str::limit($group->description, 70) : '—' }} @if($group->is_active) Active @else Inactive @endif

No service groups found

Add First Service Group
@if($serviceGroups->hasPages())
{{ $serviceGroups->links() }}
@endif
@push('scripts') @endpush @endsection