@extends('front.layouts.app', ['title' => 'Team']) @section('content') @include('front.layouts.app-header')

Our Team

@foreach ($teams as $team)
@if(!empty($team->image) && \Illuminate\Support\Facades\Storage::exists($team->image)) @else @endif

{{$team->name}}

{{$team->designation ? $team->designation : ' - -'}}

{{$team->about}}

@endforeach
@include('front.layouts.app-footer') @endsection