Build new versioned files
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Tyler
2020-12-27 04:43:58 -05:00
parent 8a20f552da
commit e9ea25ad38
7 changed files with 102 additions and 56314 deletions

View File

@ -1,7 +1,14 @@
@extends('layouts.main')
@section('content')
<h3>{{ $book->name }}</h3>
<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'))
@ -22,4 +29,5 @@
{{ $book->description }}
</p>
@endif
@endsection