@extends('template.main') @section('content')
@if(!empty($team_category)) @php $no = 1; @endphp @foreach($team_category as $t)
{{ $t->name }}

{{ $t->description }}

@if($t->team->first()) @foreach($t->team as $te)
{{ \app\Http\Controllers\TemplateController::checkAltMedia($te->image) }}
{{ $te->position }}
{{ $te->name }}
@endforeach @endif
@php $no++; @endphp @endforeach @endif
@endsection