@if( isset($stuffingProcess->stuffingProcessComments) && $stuffingProcess->stuffingProcessComments->count() > 0)

Comentários do Processo

@foreach($stuffingProcess->stuffingProcessComments as $comment)
@php $userImagePath = 'storage/usuarios/'.$comment->listUserCreate->id.'.jpg'; $defaultImagePath = 'image/generic-user.png'; if (file_exists(public_path($userImagePath))) { $imagemDePerfil = asset($userImagePath); } else { $imagemDePerfil = asset($defaultImagePath); } @endphp
{{$comment->listUserCreate->nome}}

@php $string = str_replace(array("\r\n", "\r", "\n"), "
", $comment->comments); echo $string; @endphp

{{\Carbon\Carbon::parse($comment->created_at)->format('d/m/Y h:i:s')}}
@endforeach
@endif