@extends('layouts.app') @section('content')
{{ $book->author ?? '-' }}
@if($book->subject){{ $book->subject }}
@endif {{-- Description --}}{{ $book->description ?? 'Tidak ada deskripsi tersedia.' }}
{{-- Status badge --}} @auth @if($userBook) @php $statusColor = match($userBook->pivot->status) { 'reading' => 'text-accent border-accent', 'finished' => 'text-green-400 border-green-400', default => 'text-muted border-border', }; $statusLabel = match($userBook->pivot->status) { 'reading' => 'Sedang Dibaca', 'wishlist' => 'Di Wishlist', 'finished' => 'Selesai Dibaca', default => ucfirst($userBook->pivot->status), }; @endphp{{ $statusLabel }}
@endif @endauth {{-- Actions --}}