Update (post): Fix broken routes

This commit is contained in:
2023-10-04 21:17:56 +08:00
parent c9c6004694
commit 8c77682764
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
<div class="col-lg-12 px-0">
<h1 class="display-4 fst-italic">{{ $featured_post->title }}</h1>
<p class="lead my-3">{{ $featured_post->excerpt }}</p>
<p class="lead mb-0"><a href="{{ route('front.post', ['slug' => $featured_post->slug]) }}"
<p class="lead mb-0"><a href="{{ route('front.post', ['slug' => $featured_post->slug, 'category_slug' => $featured_post->category->slug]) }}"
class=" fw-bold">Continue reading...</a></p>
</div>
</div>