feat: blog post show page

This commit is contained in:
Rico van Zelst
2023-12-12 14:32:44 +01:00
parent 87210ccac9
commit 3de5f42860
7 changed files with 90 additions and 4 deletions

View File

@@ -20,7 +20,6 @@ class PostsController extends Controller
public function show(Sheet $post)
{
dd($post);
return view('posts.show', compact('post'));
}
}