Download the PHP package i-rocky/eloquent-dynamic-relation without Composer
On this page you can find all versions of the php package i-rocky/eloquent-dynamic-relation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download i-rocky/eloquent-dynamic-relation
More information about i-rocky/eloquent-dynamic-relation
Files in i-rocky/eloquent-dynamic-relation
Package eloquent-dynamic-relation
Short Description Adds dynamic relationship capability to eloquent ORM models
License MIT
Informations about the package eloquent-dynamic-relation
(ABANDONED) Dynamic Eloquent Relationship
See https://laravel.com/docs/8.x/eloquent-relationships#dynamic-relationships
Adds dynamic relationship to Eloquent ORM models
Installation
composer require i-rocky/eloquent-dynamic-relation
Usage
Add the trait Rocky\Eloquent\HasDynamicRelation
to your model as following
Now define a relationship somewhere
In Laravel
you can add this in your AppServiceProvider
's boot
method
Now you can use the relation some_relation
as if it's defined in your MyModel
class.
Problem & Inspiration: https://stackoverflow.com/a/54065463/4452100