@extends("partials.layout") @section ("title", "View Post") @section ("content")

Published by {{ $actor->name }}

published

{{ $actor->name }}'s Post

@if (auth ()->check () && auth ()->user ()->is ($actor->user))
@csrf @method("DELETE")
@endif @if ($note->in_reply_to)

In Reply To: this post

@endif

{{ $note->summary }}

{!! $note->content !!} @foreach ($note->attachments as $attachment) @endforeach

@auth
@csrf
@endauth

Likes: {{ $note->get_likes ()->count () }}

Comments

@auth
@endauth

Displaying 0 of {{ $note->get_replies ()->count () }} comments

@foreach ($note->get_replies ()->get () as $reply) @endforeach
@endsection