@extends('layouts.frontend') @section('title') {{ $category->name }} @endsection @section('content')

{{ $category->name }}

Total {{ $books->count() }} buku

@foreach ($books as $book)
{{ $book->title }}
{{ $book->title }}

@foreach($book->categories as $category) {{ $category->name }} @endforeach

@endforeach
{{ $books->links() }}
@endsection