{{-- resources/views/components/ui/card-book.blade.php 书籍卡片组件。纵向布局:封面上 + 信息下。 用于 tipitaka 列表页。 Props: $book — 书籍数据数组,包含: id, title, author, cover(可选), cover_gradient(可选), publisher(object, 可选), language(可选), type(可选) --}} @props(['book'])
{{-- 封面 --}} {{-- 书籍信息 --}}
{{ $book['title'] ?? '未知书籍' }}
@if(!empty($book['author']))
{{ $book['author'] }}
@endif @if(isset($book['publisher']))
@endif
@if(!empty($book['language'])) {{ $book['language'] }} @endif @if(!empty($book['type'])) {{ $book['type'] }} @endif @if(!empty($book['completed_chapters'])) §{{ $book['completed_chapters'] }} @endif