@extends('layouts.app') @section('title', $author->name . ' - Tác Giả') @section('description', 'Khám phá ' . $author->comics_count . ' tác phẩm truyện tranh của tác giả ' . $author->name . '. Cập nhật liên tục các chương mới nhất.') @section('content') {{-- Author Header Section --}}
{{-- Author Avatar --}}
{{ mb_substr($author->name, 0, 1) }}
{{-- Author Info --}}

{{ $author->name }}

verified
@if($author->bio)

{{ $author->bio }}

@endif {{-- Stats --}}
book
{{ number_format($totalComics) }}
Tác phẩm
visibility
{{ number_format($totalViews) }}
Lượt xem
@if($avgRating)
star
{{ number_format($avgRating, 1) }}
Đánh giá TB
@endif
@if($author->website) @endif
{{-- Back Button --}} arrow_back Danh sách tác giả
{{-- Sidebar Filters --}} {{-- Main Content --}}
{{-- Filter Summary --}}
filter_list Tìm thấy {{ number_format($comics->total()) }} truyện
@if($status) close Xóa bộ lọc @endif
{{-- Comics Grid --}} @if($comics->count() > 0)
@foreach($comics as $comic) @endforeach
{{-- Pagination --}}
{{ $comics->links('pagination::tailwind') }}
@else
search_off

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

Thử thay đổi bộ lọc hoặc tìm kiếm tác giả khác

refresh Xem tất cả truyện
@endif
@endsection