List of sections and teams !
@if(!empty($department_details))
@foreach($department_details as $section)
@foreach($section['teams'] as $team)
{{ empty($team['team_name']) ? 'No Team in this section' : $team['team_name'] }}
@endforeach
@endforeach
@endif