@extends("layouts.base") @section("title", __("my_comments.title")) @section("content")
{{-- Titre principal --}}

💬 {{ __("my_comments.title") }}

{{ __("my_comments.subtitle") }}

{{-- Message flash --}} @if (session("success"))
{{ session("success") }}
@endif {{-- Liste des commentaires --}}
@forelse ($comments as $comment) @include("components.dashboard-comment-card", ["comment" => $comment]) @empty

{{ __("my_comments.no_comments_title") }}

{{ __("my_comments.no_comments_text") }}

@endforelse
{{-- Pagination --}} @if ($comments->hasPages())
{{ $comments->links("pagination::tailwind") }}
@endif {{-- Boutons d'action --}}
← {{ __("my_comments.back_to_dashboard") }} {{ __("my_comments.browse_confessions") }}
@endsection