@php $sectionId = $sectionId ?? 'services'; $headingId = $headingId ?? $sectionId . '-heading'; $descriptionField = $descriptionField ?? 'short'; $expandableDescription = $expandableDescription ?? false; $imageLinksToDetail = $imageLinksToDetail ?? true; $titleLinksToDetail = $titleLinksToDetail ?? true; $bookButtonCompact = $bookButtonCompact ?? false; $showSrOnlyPriceHeading = $showSrOnlyPriceHeading ?? false; $hasHeadingEyebrow = filled($headingEyebrow ?? null); $hasHeadingTitle = filled($headingTitle ?? null); $hasHeadingDescription = filled($headingDescription ?? null); @endphp
@if (!empty($showTopAccent)) @endif
@if ($hasHeadingEyebrow)

{{ $headingEyebrow }}

@endif @if ($hasHeadingTitle)

{{ $headingTitle }}

@endif @if ($hasHeadingDescription)

{{ $headingDescription }}

@endif
@if ($showSrOnlyPriceHeading)

Service price list

@endif
@foreach ($items as $row) @php $detailUrl = $row['url'] ?? 'javascript:void(0)'; $description = $row['desc'] ?? ''; @endphp
@if ($imageLinksToDetail) {{ $row['name'] ?? '' }} @else
{{ $row['name'] ?? '' }}
@endif

{{ __('frontend::messages.service_pricing_min_duration', ['min' => $row['time']]) }}

@if ($titleLinksToDetail) {{ $row['name'] }} @else {{ $row['name'] ?? '' }} @endif

@if ($expandableDescription)

{{ $description ?? '' }}

@else

{{ $description ?? '' }}

@endif
@endforeach
@if ($showSrOnlyPriceHeading)
@endif