From 7a9ca9e5d5ae8724fd5a3c96b7455a24db89c83b Mon Sep 17 00:00:00 2001 From: Ghostie Date: Wed, 21 Aug 2024 10:35:55 -0500 Subject: [PATCH] showing posts --- resources/views/posts/show.blade.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/resources/views/posts/show.blade.php b/resources/views/posts/show.blade.php index 4b41d9d..92e43a5 100644 --- a/resources/views/posts/show.blade.php +++ b/resources/views/posts/show.blade.php @@ -5,4 +5,25 @@ @endsection @section('content') +
+
+ {{ $post->title }} + +
+

0 Likes

+
+ +
+

{{ $post->user->username }}

+

+ {{ $post->created_at->diffForHumans() }} +

+

+ {{ $post->description }} +

+
+
+ +
+
@endsection