{{-- Post navigation --}}
@if ($prev = $post->getPreviousPost())
id") }}" label="Previous" style="color: var(--wa-color-text-link);" wire:navigate.hover>
@else
@endif
@if ($next = $post->getNextPost())
id") }}" label="Next" style="color: var(--wa-color-text-link);" wire:navigate.hover>
@else
@endif
id/edit") }}" label="Edit" style="color: var(--wa-color-text-link);" wire:navigate.hover>
id/download") }}" label="Download" style="color: var(--wa-color-text-link);">
{{-- Post ID --}}
{{ $post->id }}
{{-- Post author --}}
{{ $post->user->name }}
{{-- Post upload date --}}
{{-- Post dimensions --}}
{{ $post->getDimensionsStr() }}, {{ $post->extension }}
{{-- Post rating --}}
{{ $post->rating }}
{{-- Tags --}}
Tags
@foreach ($post->tags as $tag)
{{ $tag->name }}
@endforeach
{{-- Main content --}}
{{ Str::plural("Comment", $post->comments->count()) }}
@foreach ($comments as $comment)
@endforeach
{{-- Full image dialog --}}
@php [$imgw, $imgh] = $post->getDimensions(); @endphp
@script
@endscript