@extends('layouts.site') @section('content') @include('frontend.common.breadcrumb')
{{--
Chairman & Vice Chairman
--}} @if ($ourTeams->isNotEmpty())
@foreach ($ourTeams as $member)
{{-- Photo --}}
{{ $member->name }} {{ str_pad($loop->iteration, 2, '0', STR_PAD_LEFT) }}
{{-- Info --}}
{{ $member->designation }}

{{ $member->name }}

{{-- Short Bio --}}

{{ Str::limit($member->message, 120) }}

@if (trim(strip_tags($member->message ?? '')) !== '')
{{-- Read More Button --}} @if ($member->linkedin) @endif
@endif
@endforeach
@else

No Team Members Found

There are no team members available at the moment.

@endif
{{-- --- MODAL SECTION --- --}}
@endsection