@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

{{ $note->summary }}

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

@csrf

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

Comments

Displaying 0 of 0 comments

Comments go here
@endsection