From ebcdf7e3249b74aba362850bada82fe4414baa08 Mon Sep 17 00:00:00 2001 From: Jonathan Nielson Date: Wed, 19 Mar 2025 17:08:56 -0500 Subject: [PATCH] feat: add links from homepage to individual articles --- resources/views/guest/home.blade.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/resources/views/guest/home.blade.php b/resources/views/guest/home.blade.php index 88a522a..bf1ad70 100644 --- a/resources/views/guest/home.blade.php +++ b/resources/views/guest/home.blade.php @@ -11,11 +11,13 @@ @forelse($articles as $article)

- Article: {{ $article->title }} + + {{ $article->title }} +

-

- {!! $article->body !!} -

+

+ {{ $article->subtitle }} +

@empty
No articles published yet. Check back soon!