klongchu / laravel-cross-database-subqueries
There is no license information available for the latest version (1.0.1) of this package.
Eloquent cross database compatibility in subqueries
1.0.1
2023-06-01 02:12 UTC
Requires
- php: >=7.1.3
- illuminate/container: ^5.6 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0
- illuminate/database: ^5.6 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0
- illuminate/events: ^5.6 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0
- illuminate/support: ^5.6 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0
Requires (Dev)
- codacy/coverage: dev-master
- orchestra/testbench: 3.6.x
- phpunit/phpunit: ^7.0
This package is auto-updated.
Last update: 2024-10-30 02:16:30 UTC
README
Laravel Cross database subqueries
Eloquent cross database compatibility in subqueries.
Why do I need it?
To use the following Eloquent methods cross databases:
- has
- whereHas
- doesntHave
- whereDoesntHave
- withCount (except with prefixes)
Installation
Install with composer
composer require klongchu/laravel-cross-database-subqueries
From Laravel 5.5 onwards, it's possible to take advantage of auto-discovery of the service provider. For Laravel versions before 5.5, you must register the service provider in your config/app.php
Klongchu\CrossDatabase\CrossDatabaseServiceProvider::class,
Usage
In your Models
extends from:
- Klongchu\CrossDatabase\Eloquent\Model
Supported PHP Versions
- >=7.0
Supported Databases
- MySQL
- PostgreSQL
- SQL Server
Issues & Contributing
If you find an issue please report it or contribute by submitting a pull request.