@extends('frontend.layouts.app') @section('title', 'Expertise') @section('content')
@if ($expertise->isNotEmpty())

AREAS OF PRACTICE

@foreach ( $expertise as $e) @php $htmlContent = $e['description']; $words = explode(' ', strip_tags($htmlContent)); // remove HTML tags for accurate count $summary = implode(' ', array_slice($words, 0, 40)); $showReadMore = count($words) > 40; @endphp

{{ $e['name'] }}

{!! $summary !!} @if ($showReadMore) ... read more @endif
@endforeach
@endif
@if ($teams->isNotEmpty())

OUR TEAM

@foreach ( $teams as $member)

{{$member['name']}}

{{$member['designation']}}
{!! $member['summary'] !!}
@endforeach
@if (count($teams) > 3)
@endif
@endif
@endsection @push('scripts') @endpush