Skip to content

Commit

Permalink
Fix blur owner name
Browse files Browse the repository at this point in the history
  • Loading branch information
Raccoon254 committed Aug 9, 2024
1 parent d0e7dc6 commit 9f27407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/livewire/blog-renderer.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</a>
</div>
<h2 class="text-2xl capitalize font-bold text-gray-800">{{ $blog->title }}</h2>
<p class="text-gray-600 text-sm mt-2">by {{ $blog->user->name }} on {{ $blog->created_at->format('F j, Y') }}</p>
<p class="text-gray-400 text-xs mt-2">by {{ $blog->user->name }} on {{ $blog->created_at->format('F j, Y') }}</p>
<div class="mt-4 text-gray-700 leading-relaxed">
{!! Str::limit($blog->content, 300) !!}
</div>
Expand Down

0 comments on commit 9f27407

Please sign in to comment.