@if(Auth::check())
{!! Theme::section('comment.form', ['typeId' => $game->id, 'type' => 'game']) !!}
@endif
@if($game->countComments() > 10)
@endif
@foreach($game->comments->take(10)->reverse() as $comment)
{!! Theme::section('comment.display', ['comment' => $comment]) !!}
@endforeach