@extends('layouts.admin.index') @section('content')
{{ $book->title }} @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 }}
@if($book->isbn)
ISBN: {{ $book->isbn }}
Pages: {{ $book->pages ?? 'N/A' }}
@endif @if($book->publisher || $book->publication_date)
Publisher: {{ $book->publisher ?? 'N/A' }}
Publication Date: {{ $book->publication_date?->format('M d, Y') ?? 'N/A' }}
@endif
Language: {{ $book->language }}
Status: {{ $book->is_active ? 'Active' : 'Inactive' }} @if($book->is_featured) Featured @endif
@if($book->short_description)
Short Description:

{{ $book->short_description }}

@endif
Description:

{{ $book->description }}

@endsection