{!! HTML::fontIcon('chevron-left') !!} {{ $team->title }} @if ($team->country and $team->country->icon) {{ $team->country->title }} @endif

@if ($team->banner)
{{ $team->title }}
@endif
@section('teams-team-awards') @if (sizeof($team->awards) > 0)

{{ trans('app.object_awards') }}

@foreach ($team->awards->slice(0, 5) as $award) @endforeach
{!! $award->positionIcon() !!} @if ($award->url) {{ $award->title }} @else {{ $award->title }} @endif {{ $award->tournament ? $award->tournament->short : null }}
@endif @show @section('teams-team-matches') @if (sizeof($team->matches) > 0)

{{ trans('app.object_matches') }}

@foreach ($team->matches->slice(0, 5) as $match) @endforeach
{!! HTML::image($match->game->uploadPath().$match->game->icon, $match->game->title, ['width' => 16, 'height' => 16]) !!} {{ $match->right_team->title }} {!! $match->scoreCode() !!}
@endif @show