Spaces:
Running
on
Zero
Running
on
Zero
<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> |