@foreach($replies as $reply) @if((auth()->user()->is_client && $reply->ticketreply_type == 'reply') || auth()->user()->is_team)
@if(config('visibility.show_contact_profile')) @else {{ $reply->first_name ?? runtimeUnkownUser() }} {{ $reply->last_name ?? ''}} @endif
{{ runtimeDate($reply->ticketreply_created) }} - ({{ runtimeDateAgo($reply->ticketreply_created) }})
{!! $reply->ticketreply_text !!}
@if(permissionEditTicketReply($reply)) @endif
@if($reply->attachments_count > 0)
@foreach($reply->attachments as $attachment) @include('pages.ticket.components.attachments') @endforeach
@endif
@endif @endforeach