diff --git a/resources/views/livewire/comment.blade.php b/resources/views/livewire/comment.blade.php index fccc75d..876286a 100644 --- a/resources/views/livewire/comment.blade.php +++ b/resources/views/livewire/comment.blade.php @@ -5,7 +5,7 @@
- {{ $comment->user->name }} +

{{ $comment->user->name }}

@if ($isEditing) @@ -13,7 +13,7 @@
@error('editState.body') @@ -28,24 +28,22 @@
@else -

{!! $comment->presenter()->markdownBody() !!}

+
{!! $comment->presenter()->markdownBody() !!}
@endif
- + {{ $comment->presenter()->relativeCreatedAt() }} @auth - {{--@if ($comment->hasParent())--}} @if ($comment->depth() < 2) - @endif - {{--@endif--}} @can ('update', $comment) - @endcan @@ -60,7 +58,7 @@ }" @click="confirmCommentDeletion" type="button" - class="text-gray-900 font-medium" + class="text-gray-900 dark:text-gray-100 font-medium" > Delete @@ -76,7 +74,7 @@
@error('replyState.body') diff --git a/resources/views/livewire/comments.blade.php b/resources/views/livewire/comments.blade.php index 2aa0d26..7005fc8 100644 --- a/resources/views/livewire/comments.blade.php +++ b/resources/views/livewire/comments.blade.php @@ -1,8 +1,8 @@
-
-
+
+
-

Comments

+

Comments

@@ -12,12 +12,12 @@ @endforeach {{ $comments->links() }} @else -

No comments yet.

+

No comments yet.

@endif
-
+
@auth
@@ -28,7 +28,7 @@
@error('newCommentState.body') @@ -37,7 +37,7 @@
@@ -47,7 +47,7 @@ @endauth @guest -

Log in to comment.

+

Log in to comment.

@endguest