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.
What I've done so far
This is my Route
Route::get('book/edit/{id}', 'BookController@edit')->name('admin.book.edit');
Route::PATCH('book/edit/{id}', 'BookController@update')->name('admin.book.edit');
This is my controller
$books = $this->bookModel
->join('author', 'author.id', '=', 'book.author_id')
->where('book.id', '=', $id)
->select('book.*', 'author.name_1 as authorname1')
->get();
return view('backend.book.edit', compact('books', $books));
Finally view file have the following in form part
{{ Form::model($books, ['route' => ['admin.book.edit', $books->id], 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'PATCH']) }}
<!--form content-->
{{ Form::close() }}
Any help will be appreciated. Thanks
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
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.
I too had the similar error where I was using eloquent relationship,
and the problem was I was using return $this->hasMany(ClassName::class);
But the relation was of One-to-One so the solution for the problem is return $this->hasOne(ClassName::class);
.
Here in above sample the first code segment will return array of objects which will be breakdown the flow of eloquent relation in chained eloquent code like $firstChain->middleChain->requiredData
Here if middleChain
has arrayOfObjects it cause above error saying property doesn't exist
.
Be careful when using eloquent relation to properly mention the type of relation it has
I think your code need to update like:
$books = $this->bookModel
->join('author', 'author.id', '=', 'book.author_id')
->where('book.id', '=', $id)
->select('book.*', 'author.name_1 as authorname1')
->first();
return view('backend.book.edit', compact('books'));
Hope this work for you!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With