laravel-tenants icon indicating copy to clipboard operation
laravel-tenants copied to clipboard

Rinvex Tenantable is a contextually intelligent polymorphic Laravel package, for single db multi-tenancy. You can completely isolate tenants data with ease using the same database, with full power and...

Results 2 laravel-tenants issues
Sort by recently updated
recently updated
newest added

I've found that querying models on seeders are using using default root tenant so behaviour is unexpected. ``` $tenants = app('rinvex.tenants.tenant')->all(); foreach ($tenants as $tenant) { $all_users = User::withAllTenants($tenant)->get(); get();...

Hey there, thank you very much for this great package. Unfortunately there are version conflicts when trying to install the package in Laravel 11. ## Steps to reproduce 1. Install...