Download the PHP package pillar-science/laravel-multi-morph without Composer
On this page you can find all versions of the php package pillar-science/laravel-multi-morph. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download pillar-science/laravel-multi-morph
More information about pillar-science/laravel-multi-morph
Files in pillar-science/laravel-multi-morph
Package laravel-multi-morph
Short Description Allows to use multiple MorphBy relationships with same model
License MIT
Informations about the package laravel-multi-morph
Laravel Multi Morph
Allows to use multiple MorphOne/MorphMany relationships with same model
Problem
When adding multiple morph relationships to the same models, Laravel can't tell the difference between them. In the table related to MyFile
we will have
When a model have multiple morph relationships with the same model, this cause a problem when fetching information on those relationships. Laravel only store the information on which model type (here User
) the related model belongs to. As so, when fetching the profilePicture
or resume
relations, we get the same result with both files (assuming they exists)
Solution
laravel-morph-multiple gives access to two more relationships morphOneRelationship
and morphManyRelationship
which will add the relation specific information in an additional column on the model with morphToRelationship
How to use
You need to add a column to the morphedTo Model to store the relationship name it was stored for.
Migration
Here is an example migration for the morphedTo Model.
Replace methods within trait
We need to import the trait HasMorphByRelationships
and use it on both side of the relation (morphOneMany and morphTo). You need to replace the existing relations with the news one from the trait
Original | Replace by |
---|---|
morphOne |
morphOneRelationship |
morphMany |
morphManyRelationship |
morphTo |
morphToRelationship |