├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── extended-relationships.php ├── pint.json └── src ├── HasExtendedRelationships.php └── Relations ├── BelongsToArrayColumn.php ├── BelongsToManyKeys.php ├── HasManyArrayColumn.php └── HasManyKeys.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPunyapal/laravel-extended-relationships/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPunyapal/laravel-extended-relationships/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPunyapal/laravel-extended-relationships/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPunyapal/laravel-extended-relationships/HEAD/composer.json -------------------------------------------------------------------------------- /config/extended-relationships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPunyapal/laravel-extended-relationships/HEAD/config/extended-relationships.php -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPunyapal/laravel-extended-relationships/HEAD/pint.json -------------------------------------------------------------------------------- /src/HasExtendedRelationships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPunyapal/laravel-extended-relationships/HEAD/src/HasExtendedRelationships.php -------------------------------------------------------------------------------- /src/Relations/BelongsToArrayColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPunyapal/laravel-extended-relationships/HEAD/src/Relations/BelongsToArrayColumn.php -------------------------------------------------------------------------------- /src/Relations/BelongsToManyKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPunyapal/laravel-extended-relationships/HEAD/src/Relations/BelongsToManyKeys.php -------------------------------------------------------------------------------- /src/Relations/HasManyArrayColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPunyapal/laravel-extended-relationships/HEAD/src/Relations/HasManyArrayColumn.php -------------------------------------------------------------------------------- /src/Relations/HasManyKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPunyapal/laravel-extended-relationships/HEAD/src/Relations/HasManyKeys.php --------------------------------------------------------------------------------