@extends('layouts.app') @section('title', 'Bình luận của tôi - ' . Auth::user()->name) @section('content')
arrow_back

Bình luận của tôi

{{ $comments->total() }} bình luận

@if($comments->count() > 0)
@foreach($comments as $comment)
{{ $comment->comic->title }} @if($comment->chapter)

Chương {{ $comment->chapter->chapter_number }}

@endif
{{ $comment->created_at->diffForHumans() }}

{{ $comment->content }}

visibility Xem truyện {{ $comment->is_approved ? 'check_circle' : 'schedule' }} {{ $comment->is_approved ? 'Đã duyệt' : 'Chờ duyệt' }}
@endforeach
{{ $comments->links() }}
@else
comment

Chưa có bình luận

Bạn chưa có bình luận nào. Hãy chia sẻ suy nghĩ của bạn về các truyện yêu thích!

explore Khám phá truyện
@endif
@endsection