This commit is contained in:
Ghostie 2025-01-05 22:40:15 -05:00
parent f684d9c68c
commit 44f72a44da
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@
- [x] Likes
- [x] Comments
- [x] Boosts
- [ ] Local Boost
- [x] Tags
- [ ] Pinned Posts

View File

@ -104,7 +104,7 @@ else
@if ($display_post->get_hashtags ()->count () > 0)
<p>
<b>Tags:</b>
@foreach ($post->get_hashtags ()->get () as $hashtag)
@foreach ($display_post->get_hashtags ()->get () as $hashtag)
<a href="{{ route ('tags', [ 'tag' => substr ($hashtag->name, 1) ]) }}">
<span class="tag">{{ $hashtag->name }}</span>
</a>