@extends('layouts.game') @section('content')
@if (is_array($teams) && count($teams))
@foreach ($teams as $team_id=>$team)
@if (isset($team['comments']))

{{ trans('game.last_sprint_info') }}

@if (isset($team['comments']['positive']))
@foreach($team['comments']['positive'] as $comment)
{{ $comment['story_symbol'] }} {{ str_limit(trans('stories.'.$comment['story_symbol'].'.title'), 100) }}
{!! trans('stories.'.$comment['story_symbol'].'.'.$comment['comment']) !!}
@endforeach
@endif @if (isset($team['comments']['negative']))
@foreach($team['comments']['negative'] as $comment)
{{ $comment['story_symbol'] }} {{ str_limit(trans('stories.'.$comment['story_symbol'].'.title'), 100) }}
{!! trans('stories.'.$comment['story_symbol'].'.'.$comment['comment']) !!}
@endforeach
@endif
@endif @if (session('team.'.$team_id . '.closed')) @else

{{ trans('game.zoo_visitors') }}: {{ $team['visitors'] }} {{ trans('game.people') }}

@foreach ($stories as $story) @if (!($team['members']==3 && $story->area=='I')) @if (!session('team.'.$team_id . '.insectarium_closed') || $story->area!='I')
id)) ? 'checked="checked"' : '' }} {{ ( intval(session('team.' . $team_id . '.story.' . $story->id))>0 && (session('team.'.$team_id . '.story.' . $story->id))<$sprint ) || session('team.'.$team_id . '.story_blocked.' . $story->id)===true ? 'disabled="disabled"' : '' }}/>
@endif @endif @endforeach

{{ trans('game.story_points_used') }}: {{ $team['points_used'] }} / {{ $team['points'] }}

@endif
@endforeach
@if (is_array($teams) && count($teams))
@if ($sprint<=3) {{ trans('game.start_sprint') }} {{ $sprint }} @else
{{ trans('game.game_over') }}
@endif {{ trans('game.back_to_the_website') }}
@endif @else

Agile ZOO

@endif
@endsection @section('scripts') @endsection