@extends('admin.layout.app') @section('body')

{{ $book->title }}

{{ __('admin.back') }}
@if($book->cover_image)@else
@endif
{{ __('admin.title') }}{{ $book->title }}
ISBN{{ $book->isbn ?? '—' }}
{{ __('admin.author_2') }}{{ $book->author->name ?? '—' }}
{{ __('admin.publisher') }}{{ $book->publisher->name ?? '—' }}
{{ __('admin.category_2') }}{{ $book->category->name ?? '—' }}
{{ __('admin.type_2') }}{{ ucfirst($book->type ?? '') }}
{{ __('admin.copies') }}{{ $book->available_copies }}/{{ $book->total_copies }}

{{ $book->description }}

@endsection