File size: 559 Bytes
cf75111
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<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>