@extends('layouts.app') @section('title', 'Kategori: ' . $category->name) @section('content')

Kategori: {{ $category->name }}

{{ $category->description ?? 'Temukan buku-buku menarik dalam kategori ini' }}

{{ $books->total() }} buku ditemukan

Lihat Semua @php $otherCategories = App\Models\Category::where('slug', '!=', $category->slug)->get(); @endphp @foreach($otherCategories as $cat) {{ $cat->name }} @endforeach
@if($books->count() > 0)
{{ $books->links() }}
@else

Belum Ada Buku

Belum ada buku dalam kategori {{ $category->name }}.

Kembali ke Beranda
@endif
@endsection @push('styles') @endpush