@extends('library.layouts.app') @section('title', $currentCategory['name'] . ' - 巴利书库') @section('content')
@if(count($subCategories) > 0)
@foreach($subCategories as $subCategory)

{{ $subCategory['name'] }}

{{ $subCategory['description'] ?? '' }}

进入分类
@endforeach
@endif @if(count($categoryBooks) > 0)

图书列表

@foreach($categoryBooks as $book) @endforeach
@endif
@endsection