@extends('frontend.layouts.master') @section('title') Teams @endsection @section('main-content')
@if($teams) @foreach($teams as $team)
@php $photo=explode(',',$team->photo); @endphp

{{$team->name}}

{{$team->position}}

{!!$team->bio!!}

@endforeach @endif
@endsection