@extends('front') @section('content')
@php $hasValidContent = collect($content_sections)->contains(function ($section) { return isset($section['about_us']) && trim(strip_tags($section['about_us'])) !== ''; }); @endphp @if ($hasValidContent)
12+ years of experiences
img
@foreach ($content_sections as $section) @if (isset($section['about_us']) && !empty($section['about_us'])) {!! $section['about_us'] !!} @endif @endforeach
@else
No content available
@endif
@endsection