@extends('layouts.master') @section('title', $midCategory->name . ' Services') @section('content')
@forelse($services as $service)
{{ $service->name }}
{{ number_format($service->rating ?? 0, 2) }}
Rs. {{ number_format($service->price) }}   |   {{ $service->duration }} mins
{!! nl2br( '
  • ' . implode('
  • ', array_filter(array_map('trim', explode("\n", $service->highlight_points)))) . '
', ) !!}
{{ $service->name }}
@empty

No services found under this category.

@endforelse
@endsection