2020-12-27 00:34:07 +00:00
|
|
|
@extends('layouts.main')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<h3>{{ $book->name }}</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
|
|
|
|
|
2020-12-27 09:37:21 +00:00
|
|
|
<h5>Location</h5>
|
2020-12-27 00:34:07 +00:00
|
|
|
<p>
|
|
|
|
{{ $book->location->name }}
|
|
|
|
</p>
|
2020-12-27 09:37:21 +00:00
|
|
|
|
|
|
|
@if (!empty($book->description))
|
|
|
|
<h5>Description</h5>
|
|
|
|
<p>
|
|
|
|
{{ $book->description }}
|
|
|
|
</p>
|
|
|
|
@endif
|
2020-12-27 00:34:07 +00:00
|
|
|
@endsection
|