@extends('layouts.front') @push('css') @endpush @section('content')

@lang('Service')

@if (count($services) == 0)

{{__('No Service Found')}}

@else @foreach ($services as $key=>$data)
{{$data->title}}

@php echo $data->details; @endphp

@endforeach @endif
@includeIf('partials.front.cta')
@foreach ($faqs->chunk(3) as $faqs)
@foreach ($faqs as $key=>$data)
{{$data->title}}
@php echo $data->details; @endphp
@endforeach
@endforeach
@endsection @push('js') @endpush