@extends('layouts.admin') @section('title', 'Services - ' . $shop->name) @section('content')

Service Management

Manage services for {{ $shop->name }}

Back to Shop

{{ $stats['total'] }}

Total Services

{{ $stats['active'] }}

Active Services

{{ $stats['featured'] }}

Featured

{{ $stats['appointment_based'] }}

Require Appointment

Search & Filters
Services ({{ $services->total() }})
@if($services->count() > 0)
@foreach($services as $service) @endforeach
Service Provider Duration Price Type Status Actions
@if($service->image_url) {{ $service->name }} @else
@endif
{{ $service->name }}
@if($service->service_code) Code: {{ $service->service_code }} @endif @if($service->is_featured) Featured @endif
@if($service->service_provider_name)
{{ $service->service_provider_name }} @if($service->provider_certification) Certified @endif
@else {{ $shop->name }} @endif
{{ $service->duration_minutes }}min @if($service->requires_appointment) Appointment Required @endif
@if($service->pricing_type === 'hourly') ${{ number_format($service->hourly_rate, 2) }}/hr @elseif($service->pricing_type === 'variable') From ${{ number_format($service->min_price, 2) }} @else ${{ number_format($service->base_price, 2) }} @endif {{ ucfirst($service->pricing_type ?? 'fixed') }}
{{ ucfirst($service->service_type ?? 'general') }} @if($service->is_active) Active @else Inactive @endif
@else

No services found

Start building your service offerings by adding your first service.

@endif
@if($services->hasPages())
{{ $services->withQueryString()->links() }}
@endif @endsection @section('scripts') @endsection