Spaces:
Sleeping
Sleeping
File size: 215 Bytes
cf75111 |
1 2 3 4 5 6 |
<h1>{{ $book->title }} ({{ $book->author }})</h1>
<p>Published at: {{ $book->published_at }}</p>
<a href="{{ route('books.edit', $book->id) }}">Edit</a>
<a href="{{ route('books.destroy', $book->id) }}">Delete</a> |