@extends('layouts.app') @section('content')

{{ $post->title }}

{{ $post->content }}

Comments

@foreach ($post->comments as $comment)
{{ $comment->author }}

{{ $comment->content }}

@endforeach

Add a Comment

@csrf
@endsection