Eric Fletcher
Eric Fletcher
@mgarcia96 "same here" provides us zero context for assisting you. Please try to at least give us version info, and a description of your issue. Also, please refer to my...
The tenant "disk" is not directly accessible to the web. You need to make that happen. The link I provided before is one way to do so. Simply returning a...
IF NOT EXISTS is there so the package doesn't error (causes more confusion for users). Everyone just has to make sure to use the repository classes when creating/deleting things, or...
What if a user doesn't want to use a unique user for each? They can override things to make the parameters be the same, so when it tries to create...
`managed_by_system_connection` won't quite meet your needs since it still requires a connection be defined in your database config file, and will simply use that connection definition instead of the configured...
Based on that stacktrace, I'd guess the issue is with that other package. It appears to be using an Eloquent Builder instance instead of a Model class. Either way, we're...
@ArlonAntonius / @bkintanar, we should definitely look at this. [This is the code that does the loop over the tenants](https://github.com/tenancy/multi-tenant/blob/5.x/src/Traits/AddWebsiteFilterOnCommand.php#L30-L40). I don't immediately see the issue.
I'm not sure why this was closed so quickly, and without response from one of the maintainers. While it is expected behavior, that doesn't make it correct. I'm not opposed...
If either of you are using telescope or xdebug, could you attempt to track down the source of these calls? We'll attempt the same, but we would have to reproduce...
So you want everything to use a single tenant? That seems counter-intuitive. The reason it's in that booted callback is because we needed to guaranteed everything was loaded first. I...