@extends('layouts.app') @section('title', $book->title) @section('content')
Kembali ke Daftar Novel
@if($book->thumbnail_url) {{ $book->title }} @else
@endif
@auth @if($book->stock > 0)
@csrf
@else @endif
@csrf
Baca Online @else Login untuk Meminjam @endauth

{{ $book->title }}

Oleh: {{ $book->authors_display }}

@if($book->genre)
{{ $book->genre }}
@endif
@if($book->stock > 0) Tersedia ({{ $book->stock }} stok) @else Stok Habis @endif
@if($isBorrowed)
Kamu sedang meminjam novel ini
@endif

Sinopsis

{{ $book->description }}

Informasi Lengkap

Genre

@if($book->genre) {{ $book->genre }} @else - @endif

Tanggal Terbit

@if($book->published_date) {{ \Carbon\Carbon::parse($book->published_date)->format('d F Y') }} @else - @endif

Penulis

{{ $book->authors_display }}

Penerbit

@if($book->publisher) {{ $book->publisher }} @else - @endif

Jumlah Halaman

@if($book->page_count) {{ $book->page_count }} halaman @else - @endif

Bahasa

@if($book->language) {{ strtoupper($book->language) }} @else Indonesia @endif

ISBN

@if($book->isbn) {{ $book->isbn }} @else - @endif

Stok Tersedia

{{ $book->stock ?? 0 }} unit

@endsection