{{ $book['description'] }}
{{ $book['title'] }}
| 作者 | {{ $book['author'] }} |
| 出版 | {{ $book['publisher']->nickname }} |
| 语言 | {{ $book['language'] ?? '巴利语' }} |
-
@foreach($book['contents'] as $chapter)
-
@if(isset($chapter['summary'])) {{ $chapter['summary'] }} @endif @if(isset($chapter['progress']) && $chapter['progress'] > 0) @endif{{ $chapter['title'] }}@php $p = $chapter['progress']; $color = $p >= 80 ? 'bg-green' : ($p >= 30 ? 'bg-yellow' : 'bg-red'); @endphp{{ $p }}%
@endforeach