Services Management Manage your services - add, edit, toggle availability, or delete services.
{#if servicesLoading} {#each range(3) as i (i)}
{/each} {:else} {#each services as service (service.id)}

{service.name}

{service.is_active ? 'Active' : 'Inactive'}
{#if service.description}

{service.description}

{/if}
Price: £{service.price.toFixed(2)}
Duration: {service.duration_minutes} min
{/each} {/if}
{#if !servicesLoading && services.length === 0}
No services found. Click "Add Service" to create your first service.
{/if}
Add New Service Create a new service that customers can book.
{#if serviceErrors.name}

{serviceErrors.name}

{/if}
£
{#if serviceErrors.price}

{serviceErrors.price}

{/if}
{#if serviceErrors.duration_minutes}

{serviceErrors.duration_minutes}

{/if}
{#if serviceErrors.minimum_age_required}

{serviceErrors.minimum_age_required}

{/if}

0 for no age restriction