@foreach ($replies as $reply)
{{ __('Reply') }} — {{ __('Posted at :date', ['date' => date('F j, Y, g:i a', strtotime($thread->created_at))]) }}
@if ($thread->author == Auth::user() || Auth::user()->may(Forums::roleset(), Forums::GLOBAL_EDIT_POSTS)) {{ __('Edit') }} @endif @may (Forums::roleset(), Forums::GLOBAL_DELETE_POSTS) @endmay

{{ $reply->author->username }}

Joined: {{ date('F j Y', strtotime($reply->author->created_at)) }}
Posts: {{ $reply->author->threads->count() + $reply->author->replies->count() }}

{{ $reply->body }}
@endforeach
{{ $replies->links() }}