@auth

{{ __('Yorum Yap') }}

@csrf @method('PATCH')
@endauth

{{ $determination->comments->count() }} {{ __('Yorum') }}

    @foreach ($determination->comments as $comment) @php if(empty($parent_comment)){ $parent_comment = $comment->id; $margin_px = 0;} elseif($parent_comment == $comment->parent_id){ $margin_px += 30; $parent_comment = $comment->id; }else { $parent_comment = $comment->id; $margin_px = 0; } @endphp
  1. Image

    @php echo preg_replace('/@\[(.*?)\]/', '$1', $comment->comment_text); @endphp

  2. @endforeach