@extends('layouts.frontend') @section('content') @include('layouts.frontend-partial.breadcrumb')
@if (!empty($teams) && $teams->isNotEmpty()) @foreach ($teams as $key => $team)
@if (!empty($team->image))
{{ $team->name }}
@endif

{{ !empty($team->designation) ? $team->designation : '' }}

{{ !empty($team->name) ? $team->name : '' }}

@endforeach @endif
@endsection