@extends('layouts.app') @section('title', 'Truyện Mới Cập Nhật - Truyện Hay') @section('description', 'Danh sách truyện vừa cập nhật chương mới nhất. Theo dõi và đọc ngay những chương mới nhất của các bộ truyện yêu thích.') @section('content') {{-- Hero Header with Animation --}}
{{-- Animated Background --}}
update

Truyện Mới Cập Nhật

Cập nhật liên tục 24/7 - Đọc ngay những chương mới nhất

{{-- Stats Cards --}} @if(isset($stats))
{{ number_format($stats['total_updated_today']) }}
Cập nhật hôm nay
{{ number_format($stats['total_updated_this_week']) }}
Tuần này
{{ number_format($stats['total_chapters_today']) }}
Chương mới
@endif
{{-- Main Content --}}
{{-- Filter Bar --}}
filter_list

Bộ lọc

{{-- Status Filter --}} {{-- Category Dropdown --}}
{{-- Comics List --}} @if($comics->count() > 0)
@foreach($comics as $comic)
{{-- Thumbnail --}} {{ $comic->title }}
Xem chi tiết
{{-- New Badge --}} @if($comic->latest_chapter_at && \Carbon\Carbon::parse($comic->latest_chapter_at)->diffInHours(now()) < 24)
NEW
@endif
{{-- Content --}}
{{-- Title & Categories --}} {{-- Description --}} {{-- Latest Chapters --}}
schedule Chương mới nhất
@foreach($comic->chapters->take(3) as $chapter) {{-- {{ dd($chapter) }} --}} C.{{ $chapter->chapter_number }} {{ \Carbon\Carbon::parse($chapter->created_at)->diffForHumans() }} @endforeach
{{-- Stats --}}
@endforeach
{{-- Pagination --}}
{{ $comics->links('pagination::tailwind') }}
@else {{-- Empty State --}}
search_off

Không tìm thấy truyện

Thử thay đổi bộ lọc hoặc quay lại sau

refresh Xem tất cả
@endif
{{-- Sidebar --}}
@endsection