{{ $service->name }}
@if(session('success'))
{{ session('success') }}
@endif
Service Overview
@if($service->image)
@else
@endif
{{ $service->name }}
{{ $service->is_active ? 'Active' : 'Inactive' }}UGX{{ number_format($service->price, 2) }}
Category
{{ $service->category->name ?? 'Uncategorized' }}
Duration
{{ $service->duration ? $service->duration . ' minutes' : 'Flexible' }}
Capacity
{{ $service->capacity ?? 1 }} person(s)
Available Days
@php
$availableDays = json_decode($service->available_days ?? '[]', true) ?: ['monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday'];
@endphp
@foreach(['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun'] as $day)
{{ strtoupper($day) }}
@endforeach
Description
{{ $service->description ?: 'No description available.' }}
Special Requirements
{{ $service->requirements }}
Booking Trends
This Month
24 bookings
Last Month
18 bookings
Performance Metrics
Completion Rate
87%
Customer Satisfaction
94%
Peak Hours
- Morning: 8:00 AM - 10:00 AM
- Afternoon: 2:00 PM - 4:00 PM
- Evening: 7:00 PM - 9:00 PM
Popular Days
- Saturday: 35% of bookings
- Sunday: 28% of bookings
- Friday: 20% of bookings
Customer Reviews
{{ $service->reviews_count ?? 12 }} ReviewsJohn Smith
Room 302 • September 15, 2023Excellent service! The staff was very professional and the quality exceeded my expectations. Will definitely use this service again.
Sarah Johnson
Room 415 • September 12, 2023Very good service overall. The timing was perfect and the staff was friendly. Would recommend to other guests.
Michael Brown
Walk-in Guest • September 10, 2023Good service but there was a slight delay in the starting time. Otherwise, everything was perfect.
Service Updated
Price was updated from $25 to $28
September 18, 2023 • 2:30 PMNew Booking
Room 302 - John Smith
September 15, 2023 • 8:30 AMService Completed
Room 215 - Received 5-star rating
September 14, 2023 • 3:15 PMAvailability Updated
Sunday availability was added
September 12, 2023 • 10:45 AMService Created
Service was added to the system
August 28, 2023 • 9:15 AMQuick Actions
Performance Summary
{{ $service->bookings_count ?? 142 }}
Total Bookings
UGX{{ number_format($service->revenue ?? 3550, 2) }}
Total Revenue
{{ number_format($service->avg_rating ?? 4.7, 1) }}/5
Average Rating
87%
Completion Rate
Service Information
Created
{{ $service->created_at->format('M j, Y') }}
Last Updated
{{ $service->updated_at->format('M j, Y') }}
Service ID
#{{ $service->id }}
Pricing Type
{{ ucfirst($service->pricing_type ?? 'fixed') }}
Advance Booking
{{ $service->advance_booking ? 'Allowed' : 'Not Allowed' }}
@if($service->tags)
Tags
@endif
@foreach(explode(',', $service->tags) as $tag)
{{ trim($tag) }}
@endforeach