Multi-column and JSON relationships using awobaz/compoships and staudenmeir/eloquent-json-relations, updated to work with Laravel 8. Credit goes to sheldonreiff for the original library.
romverner/laravel-advanced-relationships is a Laravel package for multi-column and json relationships using awobaz/compoships and staudenmeir/eloquent-json-relations, updated to work with laravel 8. credit goes to sheldonreiff for the original library..
It currently has 0 GitHub stars and 25 downloads on Packagist (latest version v1.0.0).
Install it with composer require romverner/laravel-advanced-relationships.
Discover more Laravel packages by romverner
or browse all Laravel packages to compare alternatives.
Last updated
Multi-column and JSON-column relationships for Laravel Eloquent using awobaz/compoships and staudenmeir/eloquent-json-relations
In a recent project, I've encountered the need to use both multi-column and JSON-column relationships in the same model. Neither functionality is supported natively by Laravel. Two third-party packages exist that provide these functionalities separately, however, they have several conflicting methods so they can't be used together in the same class. This package combines awobaz/compoships and staudenmeir/eloquent-json-relations to provide full functionality of both in the same Laravel model.
This is a forked version of the original package sheldonreiff/laravel-advanced-relationships, which was created to work with Laravel 5. I created the dev-master branch here to work with Laravel 8.
If using Laravel 5-7, please use the original package originally created by sheldonreiff:
composer require sheldonreiff/laravel-advanced-relationships
If using Laravel 8, please use the updated package:
composer require romverner/laravel-advanced-relationships:dev-master
Add the HasAdvancedRelationships trait to both the parent and the related model. For all of the supported relationships, either a JSON column, multiple columns, or multiple JSON columns may be specified for the local and foreign keys as seen in the example below.
namespace App;
use Illuminate\Database\Eloquent\Model;
class A extends Model
{
use \Reiff\AdvancedRelationships\HasAdvancedRelationships;
public function b()
{
return $this->hasMany('B', 'f1', 'details->l1');
}
public function c()
{
return $this->hasMany('C', ['f1', 'details->f2'], ['details->l1', 'l2']);
}
}
Both multi-column and JSON-column support are provided for the following relationships.
Refer to awobaz/compoships and staudenmeir/eloquent-json-relations for additional functionality and other information. This package depends on these packages and simply implements the necessary integrations to make them work together.