@if (@$activeLeague && $games->count())
{{ __(@$activeLeague->name) }}
@endif
@foreach ($games as $game)
{{ __(@$game->teamOne->short_name) }}
@if ($game->isRunning)
@lang('Live Now')
@else
@lang('Starts On')
{{ carbonParse($game->bet_start_time, 'd M, h:i') }}
@endif
{{ __(@$game->teamTwo->short_name) }}
@if ($game->questions->count())
@php
$firstMarket = $game->questions->first();
$showCount = 4;
$more = $game->questions->count() - $showCount;
@endphp
{{ $firstMarket->title }}
@lang('Markets')
@foreach ($game->questions->take($showCount) as $question)
{{ $question->title }}
@endforeach
@if ($more > 0)
@endif
@foreach ($firstMarket->options as $option)
@endforeach
@endif
@endforeach
@if (blank($games))
@lang('No game available in this category')
@endif