Maarten Paauw
[3.2.0] Export to CSV relationships
@Patrick1989 I didn't realize you were busy with this issue as well. My PR just got merged. It solves the issue: https://github.com/filamentphp/filament/pull/10899
30 replies
ImportAction Infinite Loop when using the new FilamentPHP 3.1 Import Action
Alright! league/csv version 9.12 broke the importer. I'm not entirely sure why. See issue https://github.com/filamentphp/filament/issues/10002 for more information. Maybe someone here can help us figure out
26 replies
ImportAction Infinite Loop when using the new FilamentPHP 3.1 Import Action
Oh by the way, I don't know if it is clear already. The import action works using
QUEUE_DRIVER=sync
, but if you use a async driver like redis in combination with Horizon the following code https://github.com/filamentphp/filament/blob/3.x/packages/actions/src/Imports/Models/Import.php#L43 resolves to NULL.26 replies
ImportAction Infinite Loop when using the new FilamentPHP 3.1 Import Action
I've created a GitHub issue for this bug with a reproduce branch: https://github.com/filamentphp/filament/issues/10002
26 replies
ImportAction Infinite Loop when using the new FilamentPHP 3.1 Import Action
Good to know this kinda temporary fix works. But still, it doesn’t feel right for me. It should know already which user to use in my opinion. Keep me posted on the multi tenancy part.
26 replies
ImportAction Infinite Loop when using the new FilamentPHP 3.1 Import Action
I've encountered the same problem. I'm using filament v3.1 and multi tenacy as well.
I'd add
$this->app->bind(Authenticatable::class, User::class);
to a service provider which (i think) fixed the problem. But I don't think that's a good solution.26 replies