@extends('frontend.layout.site') @section('title', $service->title) @section('content')
{{-- @if($service->featured_image)
{{ $service->title }}
@endif --}}
@if($service->icon) @endif

{{ $service->title }}

@if($service->short_description)

{{ $service->short_description }}

@endif
{!! $service->long_description !!}
@php $relatedServices = \App\Models\Service::where('id', '!=', $service->id)->orderBy('sequence', 'asc')->take(4)->get(); @endphp @if($relatedServices->count() > 0)
Other Services

Explore More Services

@foreach($relatedServices as $s)
{{-- @if($s->featured_image) {{ $s->title }} @endif --}}
@if($s->icon) @endif
{{ $s->title }}

{{ Str::limit(strip_tags($s->short_description), 80) }}

Read More
@endforeach
@endif
@push('scripts') @endpush @endsection