Property [id] does not exist on this collection instance

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

    You have to retrieve one record with first() not a collection with get(), i.e:

    $book = $this->bookModel
        ->join('author', 'author.id', '=', 'book.author_id')
        ->where('book.id', '=', $id)
        ->select('book.*', 'author.name_1 as authorname1')
        ->first();
    

    Please sobstitute $books with $book in the rest of the code also.

提交回复
热议问题