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

Service Management

Total Services
{{ $stats['total'] }}
Active Services
{{ $stats['active'] }}
Featured
{{ $stats['featured'] }}
Online Booking
{{ $stats['online_booking'] }}
Filters
Clear
Services
@if($services->count() > 0)
@foreach($services as $service) @endforeach
Service Code Category Price Duration Booking Status Actions
{{ $service->name }} @if($service->service_type)
{{ ucfirst(str_replace('_', ' ', $service->service_type)) }} @endif
{{ $service->service_code ?: 'N/A' }} {{ $service->service_type ?? 'Uncategorized' }} ${{ number_format($service->base_price, 2) }} @if($service->on_discount && $service->discounted_price)
${{ number_format($service->discounted_price, 2) }} @endif
{{ $service->duration_minutes }} min @if($service->buffer_time_minutes)
+{{ $service->buffer_time_minutes }}min buffer @endif
@if($service->requires_appointment) Appointment @endif @if($service->accepts_walk_ins) Walk-ins @endif @if($service->online_booking_enabled)
Online Booking @endif
@if($service->is_active) Active @else Inactive @endif @if($service->is_featured)
Featured @endif
{{ $services->links() }}
@else

No services found. Add your first service to get started!

@endif
@endsection @section('scripts') @endsection