{{-- resources/views/library/anthology/index.blade.php --}} @extends('layouts.library') @section('title', '文集 · 巴利书库') @push('styles') @vite('resources/css/modules/_anthology.css') @endpush @section('breadcrumb') @endsection @section('hero')

文集 {{ $total }}

经论注疏 · 禅修指引 · 法义探讨

@endsection @section('content')
{{-- 文集列表 --}}
@forelse($anthologies as $item) @empty
@endforelse {{-- 分页 --}}
{{ $anthologies->links('library.anthology.pagination') }}
{{-- 侧边栏 --}}
{{-- 搜索 --}}
{{-- 作者列表 --}} @if(!empty($authors))
作者
    @foreach($authors as $author)
  • @endforeach
@endif
@endsection