@extends('layouts.simple.master') @section('title', 'Team Members') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

Team Members

@endsection @section('breadcrumb-items') @endsection @section('content')
@foreach ($teamMembers as $key => $teamMember) @endforeach
# Image Name Degination Actions
{{$key + 1}} @if(!empty($teamMember->image) && Storage::exists($teamMember->image)) @endif {{$teamMember->name}} {{$teamMember->title}}
@endsection @section('script') @endsection