{{-- resources/views/library/anthology/index.blade.php --}} @extends('layouts.library') @section('title', __('library.anthology') . ' · ' . __('library.site_name')) @push('styles') @vite('resources/css/modules/anthology.css') @endpush @section('breadcrumb') @endsection @section('hero')

{{ __('library.anthology') }} {{ $total }}

{{ __('library.anthology_subtitle') }}

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