kenken999's picture
test
cf75111
raw
history blame
559 Bytes
<h1>Books</h1>
<ul>
@foreach($books as $book)
<li>
{{ $book->title }} ({{ $book->author }})
<a href="{{ route('books.show', $book->id) }}">Show</a>
<a href="{{ route('books.edit', $book->id) }}">Edit</a>
<form action="{{ route('books.destroy', $book->id) }}" method="post">
@csrf
@method('DELETE')
<button type="submit">Delete</button>
</form>
</li>
@endforeach
</ul>
<a href="{{ route('books.create') }}">Create New Book</a>