33 lines
739 B
PHP
33 lines
739 B
PHP
@extends('layouts.main')
|
|
|
|
@section('content')
|
|
<h3>
|
|
{{ $book->name }}
|
|
<div class="action-container float-right" data-url="{{ route('books.show', $book->id) }}">
|
|
<button class="remove-item btn btn-danger">
|
|
Remove
|
|
</button>
|
|
</div>
|
|
</h3>
|
|
<h5>By: {{ $book->authors->pluck('name')->join(', ') }}</h5>
|
|
<br />
|
|
@if ($thumbnail = $book->attachment('thumbnail'))
|
|
<h5>Image</h5>
|
|
<p>
|
|
<img src="{{ $thumbnail->url }}" />
|
|
</p>
|
|
@endif
|
|
|
|
<h5>Location</h5>
|
|
<p>
|
|
{{ $book->location->name }}
|
|
</p>
|
|
|
|
@if (!empty($book->description))
|
|
<h5>Description</h5>
|
|
<p>
|
|
{{ $book->description }}
|
|
</p>
|
|
@endif
|
|
|
|
@endsection |