© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•13mo ago•
3 replies
pratik

Slow BulkExport Action

9914 records selected
Exporting selected records using exporter from bulkActions is slow.
while exporting those records using header's exporter is fast.
slow : The actual export is fast but the time it takes for bulk exporter to show the export modal is like 30s and the export action is glued to the screen and moves with scroll like it's absolute.
Am I doing something wrong here ?
->headerActions([
                ExportAction::make()
                    ->exporter(OrderExporter::class)
                    ->modifyQueryUsing(function (Builder $query) {
                        return $query
                            ->withoutGlobalScopes()
                            ->where('organization_id', auth()->user()->organization_id);
                    }),
            ])
            ->bulkActions([
                Tables\Actions\BulkActionGroup::make([
                    ExportBulkAction::make()
                        ->exporter(OrderExporter::class)
                        ->modifyQueryUsing(function (Builder $query) {
                            return $query
                                ->withoutGlobalScopes()
                                ->where('organization_id', auth()->user()->organization_id);
                        }),
                ]),
->headerActions([
                ExportAction::make()
                    ->exporter(OrderExporter::class)
                    ->modifyQueryUsing(function (Builder $query) {
                        return $query
                            ->withoutGlobalScopes()
                            ->where('organization_id', auth()->user()->organization_id);
                    }),
            ])
            ->bulkActions([
                Tables\Actions\BulkActionGroup::make([
                    ExportBulkAction::make()
                        ->exporter(OrderExporter::class)
                        ->modifyQueryUsing(function (Builder $query) {
                            return $query
                                ->withoutGlobalScopes()
                                ->where('organization_id', auth()->user()->organization_id);
                        }),
                ]),
image.png
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Very slow performence (pagination, bluk action)
FilamentFFilament / ❓┊help
2y ago
ActionGroup Action caching custom view
FilamentFFilament / ❓┊help
9mo ago
Action Modal little slow in record table
FilamentFFilament / ❓┊help
2y ago
Table action edit modal is very slow
FilamentFFilament / ❓┊help
3y ago