I am trying to create edit page and this error keeps popping up Whoops, looks like something went wrong. Property [id] does not exist on this collection instance.
Whoops, looks like something went wrong. Property [id] does not exist on this collection instance.
The error is here:
$books->id
When you're using get() you get a collection and $books is a collection. In this case you need to iterate over it to get its properties:
get()
$books
@foreach ($books as $book) {{ $book->id }} @endforeach