Property [id] does not exist on this collection instance

前端 未结 4 855
遥遥无期
遥遥无期 2021-01-04 21:44

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.

4条回答
  •  悲哀的现实
    2021-01-04 22:00

    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:

    @foreach ($books as $book)
        {{ $book->id }}
    @endforeach
    

提交回复
热议问题