@if (authUser())
{{ d_trans('Leave a comment') }}
@else
{{ d_trans('Login or create account to leave comments') }}
@endif
@extends('themes.basic.blog.layout') @section('title', $blogArticle->title) @section('description', $blogArticle->description) @section('keywords', $blogArticle->keywords) @section('og_image', $blogArticle->getImageLink()) @section('breadcrumbs_schema', Breadcrumbs::view('breadcrumbs::json-ld', 'blog_article', $blogArticle)) @section('content')
{{ d_trans('Comments') }} ({{ $blogArticleComments->count() }})
@forelse ($blogArticleComments as $blogArticleComment) @php $user = $blogArticleComment->user; @endphp{!! purifier($blogArticleComment->body) !!}