@php Theme::set('pageTitle', $category->name); Theme::set('headerStyle', theme_option('header_style', 'style-1')); Theme::set('headerTopStyle',theme_option('header_top_sidebar_style', 'style-1')); @endphp
@if ($description = $category->description)

{{ $description }}

@endif
@foreach ($category->services as $service)
@if ($iconImage = $service->getMetaData('icon_image', true))
{{ RvMedia::image($iconImage, $service->name, attributes: ['loading' => false]) }}
@elseif ($icon = $service->getMetaData('icon', true))
@endif

{{ $service->name }}

@if ($image = $service->image) {{ RvMedia::image($image, $service->name, attributes: ['loading' => false]) }} @endif {{ __('VIEW DETAILS') }}

{!! BaseHelper::clean($service->description) !!}

@endforeach