I’m working on an app with a Filament backend. I’m currently trying to get an importer working. I’ve – added the queue:batches-tables (gave an “already exists” errror since it came with Jetstream already)
- added the notification table
- ran the filament-actions-migrations (all per the docs)
- created an importer
- I can upload a file. When I confirm the column mappings it gives a notification “x rows are being processed in the background”
… except nothing happens.
When I run the “php artisan queue:work”-command it does process the job but it still doesn’t show any notifications (or provide the list of errors download-link).
I’ve added a dd(‘debug breakpoint’) in the importer class > resolveRecord() function but it doesn’t get triggered.
I’m a bit clueless here. I’ve had it working in the past with the same configuration. Can’t tell what I’m missing here at this point?
thanks for any advice!
created an Filament Importer class & tried importing data
Excpected the import to happen but the job does not start