@extends('themes.basic.blog.layout') @section('title', $blogArticle->title) @section('breadcrumbs_schema', Breadcrumbs::view('breadcrumbs::json-ld', 'blog_article', $blogArticle)) @section('og_image', $blogArticle->getImageLink()) @section('description', $blogArticle->short_description) @section('content')

{{ $blogArticle->title }}

{{ $blogArticle->title }}
{!! $blogArticle->body !!}
@include('themes.basic.partials.share-buttons', [ 'socials_classes' => 'mt-4', 'link' => $blogArticle->getLink(), ])
{{ translate('Comments') }} ({{ $blogArticleComments->count() }})
@forelse ($blogArticleComments as $blogArticleComment) @php $user = $blogArticleComment->user; @endphp
{{ $user->username }}

{!! purifier($blogArticleComment->body) !!}

@endforeach
@if (authUser())
{{ translate('Leave a comment') }}
@csrf
@else
{{ translate('Login or create account to leave comments') }}
@endif
@push('schema') {!! schema($__env, 'article', ['article' => $blogArticle]) !!} @endpush @endsection