@if($book->pdf_file)
View PDF
@endif
{{ $book->title }}
Author: {{ $book->author }}
Category: {{ $book->category->name ?? 'N/A' }}
Price:
@if($book->is_on_sale)
₹{{ number_format($book->sale_price, 2) }}
₹{{ number_format($book->price, 2) }}
@else
₹{{ number_format($book->price, 2) }}
@endif
Stock:
{{ $book->stock_quantity }}
ISBN: {{ $book->isbn }}
Pages: {{ $book->pages ?? 'N/A' }}
Publisher: {{ $book->publisher ?? 'N/A' }}
Publication Date: {{ $book->publication_date?->format('M d, Y') ?? 'N/A' }}
Language: {{ $book->language }}
Status:
{{ $book->is_active ? 'Active' : 'Inactive' }}
@if($book->is_featured)
Featured
@endif
Short Description:
@endif
{{ $book->short_description }}
Description:
{{ $book->description }}