@extends('front.front_layouts') @section('content')

{{ $frontSetting->features_text ?? 'Features' }}

@if (isset($allFeatures) && count($allFeatures) > 0) {{-- Dynamic Features from Controller --}} @foreach ($allFeatures as $allFeature)
{{ $allFeature->title }}

{{ $allFeature->title }}

{{ $allFeature->description }}

@foreach ($allFeature->features as $index => $innerFeature)

{{ $innerFeature['title'] }}

{{ $innerFeature['description'] }}

@if (!empty($innerFeature['image_url']))
{{ $innerFeature['title'] }}
@endif
@endforeach
@endforeach @endif @include('front.sections.call_to_action') @endsection