@t('The Cube')
@t('Your Story')
{{ $data->takeAwaySessionDate }}
@foreach ($data->teams as $team)
{{ $team->name }}
{{ implode( ' & ', array_map( function($item) { return $item->gameTagName; }, oa($team->players) ) ) }}
{{ $team->score }} @t('points')
@endforeach
@foreach ($data->games as $key => $game)
{{ $game->gameName }}
{{ $game->leftTeamScore }}
@foreach (oa($game->leftTeamCheatsUsed) as $cheat => $amount) @if ($amount > 0)
{{ $amount }} {{ ucwords(strtolower(preg_replace('/([A-Z])/', ' \1', $cheat))) }}
@endif @endforeach
{{ $game->rightTeamScore }}
@foreach (oa($game->rightTeamCheatsUsed) as $cheat => $amount) @if ($amount > 0)
{{ $amount }} {{ ucwords(strtolower(preg_replace('/([A-Z])/', ' \1', $cheat))) }}
@endif @endforeach
@endforeach

@t('Daily Leaderboard')

@foreach ($daily as $key => $value) @endforeach
{{ $value->position }} {{ $data->teams[1]->name}} {{ $value->name }} {{ $value->score }}
@t('Beat your score!')
@t('Book a second visit today!')

@t('Book now')

@t('Global Leaderboard')

@foreach ($global as $key => $value) @endforeach
{{ $value->position }} {{ $value->name }} {{ $value->score }}