{{-- Cabecera --}}
@if($post->user_id === auth()->id())
@csrf @method('DELETE')
@endif
{{-- Contenido --}} @if($post->body)

{{ $post->body }}

@endif @if($post->image_path) @endif {{-- Contadores --}}
{{ $post->likes->count() }} Me gusta {{ $post->comments->count() }} comentarios
{{-- Botones de acción --}} {{-- Sección de comentarios --}}
@foreach($post->comments as $comment)
{{ $comment->author->name }}
{{ $comment->body }}
@endforeach
@csrf