@extends('admin.layouts.layout') @section('title', 'View Service: ' . $service->service_name) @section('content')
{{ $service->service_name }}
@if($service->service_type) {{ $service->service_type }} @else Not specified @endif
{{ $service->fee_type ?? 'Not specified' }}
@if($service->duration) {{ $service->duration }} hour{{ $service->duration > 1 ? 's' : '' }} @else Not specified @endif
{{ $service->sort_order ?? 0 }}
{{ $service->tenant ? $service->tenant->name : 'N/A' }}
{{ $service->is_main_service ? 'Main Service' : 'Regular Service' }}
| Sq.ft From | Sq.ft To | Fee | Duration (mins) |
|---|---|---|---|
| {{ number_format($fee->sqft_from) }} | {{ number_format($fee->sqft_to) }} | {{ \App\Helpers\Helper::price($fee->fee) }} | {{ $fee->mins ?? '—' }} |
| Condo Type | Fee (Per Unit) |
|---|---|
| {{ ucfirst($fee->condo_type) }} | {{ \App\Helpers\Helper::price($fee->fee) }} |
| Unit | Fee |
|---|---|
| {{ $fee->unit }} | {{ \App\Helpers\Helper::price($fee->fee) }} |