{{ $article->title }}

{!! strip_tags($article->text) !!}
@if ($article->children->isNotEmpty()) @foreach ($article->children->take(1) as $item)

{{ $item->title }}

{!! strip_tags($item->text) !!}


@endforeach @endif
@foreach ($article->children->skip(1)->take(3) as $child)
@php $words = explode(' ', $child->title); @endphp
{{ array_key_exists(1, $words) ? substr($words[1], 0, 1) : 'A' }}

{{ $child->title }}

{!! strip_tags($child->text) !!}
@endforeach
@if (isset($whyChooseUs) && $whyChooseUs->children->isNotEmpty())

Why Choose Us

@foreach ($whyChooseUs->children as $w)

{{ $w->title }}

{!! strip_tags($w->text) !!}
@endforeach
@endif @if (isset($teams))

Meet Our Team

@foreach ($teams as $t)
{{$t->title}}

{{ $t->title }}

{{ $t->designation }}
@endforeach
@endif