@extends('frontend.layouts.master') @section('title') Teams @endsection @section('main-content')

@if(isset($selectedCategory) && $selectedCategory->slug !== 'directors') {{ $selectedCategory->title }} @else Directors @endif

@if($teams) @foreach($teams as $team) @if($team->teamcat_info->slug == 'directors')
@php $photo=explode(',',$team->photo); @endphp {{ Storage::url($team->photo) }}

{{$team->name}}

{{$team->position}}

{{$team->email}}

@elseif($team->teamcat_info->slug == 'managers')
@php $photo=explode(',',$team->photo); @endphp {{ Storage::url($team->photo) }}

{{$team->name}}

{{$team->position}}

{{$team->email}}

@elseif($team->teamcat_info->slug == 'officers')
@php $photo=explode(',',$team->photo); @endphp {{ Storage::url($team->photo) }}

{{$team->name}}

{{$team->position}}

{{$team->email}}

@endif @endforeach @endif
@endsection