{{$item->profile->username}}
@csrf

{{$item->profile->username}} {!! $item->rendered ?? e($item->caption) !!}

@if($item->comments()->count() > 3) @endif
@if(isset($showSingleComment) && $showSingleComment === true)

{{$status->profile->username}} {!!$status->rendered!!} {{$status->created_at->diffForHumans(null, true, true, true)}}

@else @foreach($item->comments->reverse()->take(3) as $comment)

{{$comment->profile->username}} {{ str_limit($comment->caption, 125) }}

@endforeach @endif