Rename column names

This commit is contained in:
2026-01-07 12:54:10 +01:00
parent 98d36d6018
commit e972f8db41
15 changed files with 63 additions and 82 deletions

View File

@@ -34,7 +34,7 @@
@foreach($comments as $comment)
<tr wire:key="comment-{{ $comment->id }}" class="bg-white border-t dark:bg-neutral-800 dark:border-pink-700">
<td class="px-6 py-4">
<a href="{{ route('user.index', ['username' => $comment->username]) }}">{{ $comment->username }}</a>
<a href="{{ route('user.index', ['username' => $comment->name]) }}">{{ $comment->name }}</a>
</td>
<th scope="row" class="px-6 py-4 font-medium text-gray-900 dark:text-white max-w-lg">
{{ $comment->comment }}