@extends('layouts.app') @section('title', 'Lịch sử đọc - ' . Auth::user()->name) @section('content')
arrow_back

Lịch sử đọc

{{ $history->total() }} truyện đã đọc

@if($history->count() > 0) @endif
@if($history->count() > 0)
@foreach($history as $item) @if($item->comic)
{{ $item->comic->title }}

{{ $item->comic->title }}

{{ $item->comic->status === 'completed' ? 'check_circle' : 'schedule' }} {{ $item->comic->status === 'completed' ? 'Hoàn thành' : 'Đang phát hành' }} schedule {{ $item->last_read_at->diffForHumans() }}
@if($item->chapter) play_arrow Tiếp tục đọc: Chương {{ $item->chapter->chapter_number }} @endif
@endif @endforeach
{{ $history->links() }}
@else
history

Chưa có lịch sử

Bạn chưa đọc truyện nào. Hãy bắt đầu khám phá ngay!

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