@foreach ($information['schedules'] as $div => $schedule)
@if (count($schedule->groups) > 0)
@foreach ($schedule->groups as $type => $group)
@if (Helpers::strEqual($type, array('LEAGUE', 'TOURNAMENT')))
@foreach ($group as $sub_group)
{{ $sub_group['name'] }}
@foreach ($sub_group['contests'] as $contest)
@endforeach
@endforeach
@else
{{ $group['name'] }}
@foreach ($group['contests'] as $contest)
@endforeach
@endif
@endforeach
@else
There are no {{ $div }} contests scheduled for {{ date('l, M j, Y', strtotime($information['date_navigation']->view_date)) }}.
Use the date navigation features above to select another date,
skip to the previous or next play date, or jump to another day.
@endif