@extends('web.layouts.container') @section('content')

{{$ceo->name}}

{{$ceo->job_title}}
    @if(count($ceoDescriptions)) @foreach($ceoDescriptions as $ceoDescription)
  • {{$ceoDescription}}
  • @endforeach @endif
@if(count($teams)) @foreach($teams as $team) @if($loop->iteration == 1) @continue @endif
{{$team->name}}
{{$team->job_title}}
    @if(count(json_decode($team->description, true))) @foreach(json_decode($team->description, true) as $teamDescription)
  • {{$teamDescription}}
  • @endforeach @endif
@endforeach @endif
@endsection @section('inner_js') @endsection