Property [id] does not exist on this collection instance

前端 未结 4 854
遥遥无期
遥遥无期 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:15

    As Mayank mentioned above you get a collection, you neeed to itreate over the FIELDS to get the right field you want. I am giving the same answer in the sytax which is working for me

    foreach ($books as $book) {
         $book_id = $book->id
    }
    

提交回复
热议问题