salvatorecervone / relationsjoins
This is my package relationsjoins
Fund package maintenance!
SalvatoreCervone
Requires
- php: ^8.1
Requires (Dev)
- laravel/pint: ^1.2
- pestphp/pest: ^1.20
- spatie/ray: ^1.28
This package is auto-updated.
Last update: 2025-03-09 10:33:10 UTC
README
Whats?
This package help you to convert relationship eloquent to join relation
Installation
You can install the package via composer:
composer require salvatorecervone/relationsjoins
Usage
For start you setting type of your relation for all relation do you use ex.
function role(): HasMany { return $this->hasMany(Role::class); }
Use Triat in any models do you return joins with
Use ReturnJoin;
and after you call one row of code
$joins = app('App\Models\User')->load['role']->returnjoin();
the result is a array with all information of all relations usage. The array have all id and name table for real relation and have the inner join string for usage in query builder
Credits
License
The MIT License (MIT). Please see License File for more information.