Ian Miranda
Ian Miranda
@bkintanar, thanks for the quick reply ! Unfortunately not, I’m doing exactly what you said on the spatie permissions package, but this one in particular does not have a configuration...
I was preparing to do that when I checked that there is already o PR for this since July, I'll see if they can merge it, otherwise I'll just handle...
@ArlonAntonius, I was trying to set the `Translation` class from the [barryvdh/laravel-translation-manager](https://github.com/barryvdh/laravel-translation-manager) package to use the system connection. So basically I just added this to the configuration: ```php 'force-system-connection-of-models' =>...
@bkintanar yes, but those are unit tests only, right ? They are not used anywhere on the code itself to force the connection of a model at runtime.
Ooh, I've missed that as well, sorry ! I'll try to do some tests here with that file to see why it isn't working (at least for me), and will...
Well, I've had no luck so far trying to figure out the problem. If I `dd((new $class())->getConnection());` on the `ConnectionProvider` right after setting the connection resolver, it shows correctly the...
I guess I kinda tracked down the issue, but still couldn't figure out a solution... I'm not sure if anyone ever got this feature working, because apparently (if I'm not...
Uuhn... I don't know... Indeed it is a possible solution, maybe better than running a query for this, but implementing it this way will also compromise the restoring feature. I...
Ok, great ! I'll start working on that, I need to understand a little bit better how everything works, cause simply adding that line as I mentioned above works fine...