@extends('layouts.admin') @section('title', 'Services - ' . $shop->name) @section('content')
Manage services for {{ $shop->name }}
Total Services
Active Services
Featured
Require Appointment
| Service | Provider | Duration | Price | Type | Status | Actions |
|---|---|---|---|---|---|---|
|
@if($service->image_url)
{{ $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 |
|
Start building your service offerings by adding your first service.