@extends('library.layouts.app') @section('title', __('labels.home')) @section('content')
{{-- ✅ 所有卡片的统一容器 --}}
@foreach($categoryData as $data) {{-- ✅ 响应式列 --}}

{{ $data['category']['name'] }}

@foreach($data['children'] as $child) @endforeach
@endforeach

update

@include('components.book-list', ['books' => $update])
@endsection