I think the concept relation should easy to understand. just set relations and chain with proper foreign.
I try to chain relation hasOne with morphMany. But hasOne can’t access morph relations
Call to undefined method
IlluminateDatabaseEloquentRelationsHasOne::images()
media model public function poster(){ return $this->hasOne(Media::class); } poster model public function images(){ return $this->morphMany(Image::class, 'imageable'); } controller $media = Media::first(); $media->poster()->images()->create();
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
You cannot chain that way, but you can chain this way:
$media->poster->images()->create()
which is short for:
$media->poster()->first()->images()->create()
You first need to have a proper poster
object before you can access the images
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0