@extends('layouts.web.index') @section('content') @include('layouts.web.header')

{{ $book->title }}

@if(session('success')) @endif @if(session('error')) @endif

{{ $book->title }}

by {{ $book->author }}

{{ $book->title }} @if($book->is_on_sale)
Sale
@endif

{{ $book->title }}

by {{ $book->author }}

@if($book->is_on_sale) ₹{{ number_format($book->sale_price, 2) }} ₹{{ number_format($book->price, 2) }} @else ₹{{ number_format($book->price, 2) }} @endif
Category {{ $book->category->name }}
Language {{ $book->language }}
Pages {{ $book->pages ?? 'N/A' }}
Publisher {{ $book->publisher ?? 'N/A' }}
ISBN {{ $book->isbn ?? 'N/A' }}
Published {{ $book->publication_date ? $book->publication_date->format('M Y') : 'N/A' }}

Description

{!! nl2br(e($book->description)) !!}
@include('layouts.web.footer') @endsection