@extends('layouts.app') @section('title', $book->title . ' by ' . $book->author . ' - Book Details') @section('content')
by {{ $book->author }}
@if($book->isbn)ISBN: {{ $book->isbn }}
@endif₹{{ number_format($book->price, 2) }}
+ ₹{{ number_format($book->shipping_price, 2) }} shipping
@elseFree shipping
@endif{{ $book->description }}
by {{ $relatedBook->author }}