Files
Archive/retro/atomcms/resources/themes/atom/views/components/article/base.blade.php

10 lines
281 B
PHP
Raw Normal View History

2025-12-09 06:52:43 +00:00
@props(['article'])
<div class="col-span-12 space-y-4 md:col-span-9">
<x-article.content :article="$article" />
@if ($article->can_comment)
<x-article.comment.composer :article="$article" />
<x-article.comment.list :article="$article" />
@endif
</div>