@extends('layouts.frontend.app') @section('title', $category->title ?? 'Board of Directors') @section('content') @include('inner.breadcrumb',['pageName' => $category->title ?? 'Board of Directors'])
@if (!empty($chairman))

{{$category->title}}

Photo of {{ $chairman->full_name }}
  • {{ $chairman->full_name }}
  • {{ $chairman->designation }}
  • {!! $chairman->excerpt !!}
@endif
@foreach ($team as $index => $item) @if ($index == 2) @break; @endif
Management team, photo of {{ $item->full_name }}
  • {{$item->full_name}}
  • {{$item->designation}}
  • {!! $item->excerpt !!}
@endforeach
@foreach ($team as $index => $item) @if ($index < 2) @continue; @endif
Management team, photo of {{ $item->full_name }}
  • {{$item->full_name}}
  • {{$item->designation}}
  • {!! $item->excerpt !!}
@endforeach
@endsection