@extends('website.layout') @section('title', $title) @section('meta', $meta) @section('content')

The Faces Behind the Vision

We’re here to inspire, guide, and transform. Get to know the people making it happen.

@php $sections = [ 'director' => 'Directors', 'advisory' => 'Advisory Team', 'team' => 'Team Members' ]; @endphp @foreach($sections as $type => $heading) @php $filtered = $teams->where('type', $type); @endphp @if($filtered->isNotEmpty())

{{ $heading }}

@foreach($filtered as $t)
{{ $t->name }}

{{ $t->name }}

{{ $t->designaation }}

{{ $t->organization }}

View Details

@endforeach
@endif @endforeach {{-- Modals --}} @foreach($teams as $t) @endforeach @endsection