@if($bookCategory->image)
@else
@endif
{{ $bookCategory->name }}
Slug: {{ $bookCategory->slug }}
Sort Order: {{ $bookCategory->sort_order ?? 0 }}
Books Count:
{{ $bookCategory->books()->count() }}
Status:
{{ $bookCategory->is_active ? 'Active' : 'Inactive' }}
Description:
@endif
@if($bookCategory->books()->count() > 0)
{{ $bookCategory->description }}
Books in this category:
@if($bookCategory->books()->count() > 10)
@endif
| Title | Author | Price | Status |
|---|---|---|---|
| {{ $book->title }} | {{ $book->author }} | ${{ number_format($book->price, 2) }} | {{ $book->is_active ? 'Active' : 'Inactive' }} |
Showing first 10 of {{ $bookCategory->books()->count() }} books
@endif