Migration complete

This commit is contained in:
2026-06-23 19:24:38 +02:00
parent 279160c1cb
commit 64b26ef059
126 changed files with 8121 additions and 221 deletions

View File

@@ -0,0 +1,23 @@
<div class="comment-block">
<x-xen-foro-avatar :user="$review->user_id" />
<div class="comment-content">
<div class="comment-meta">
<span class="comment-author">{{ $review->xenforoUser()?->username }}</span>
<span class="comment-separator"></span>
<x-review-star-rating :rating="$review->rating" />
<span class="comment-separator"></span>
<span class="comment-date">{{ $review->created_at->format('Y-m-d') }}</span>
@if( $entryShow && $review->entry()->exists() )
<span class="comment-separator"></span>
<a href="{{ route('entries.show', ['section' => $review->entry?->type, 'entry' => $review->entry ]) }}">{{ $review->entry->complete_title ?? $review->entry->title }}</a>
@endif
</div>
<div class="review-title">{{ $review->title }}</div>
<div class="comment-body markdown-body">
{!! $review->description_html !!}
</div>
</div>
</div>