© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
2 replies
irfancan

pxlrbt/filament-excel ExportAction doesn't work with simple/modal (ManageRecords) resources

Hello,
I am trying to use header action of Filament Excel on a simple/modal (ManageRecords) resource (using Filament v2)
use pxlrbt\FilamentExcel\Actions\Tables\ExportAction;
use pxlrbt\FilamentExcel\Exports\ExcelExport;

            ->headerActions([
                ExportAction::make()
                    ->icon('heroicon-o-arrow-down')
                    ->exports([
                        ExcelExport::make()
                            ->fromTable()
                            ->queue()
                            ->withChunkSize(100),
                    ]),
            ]);
use pxlrbt\FilamentExcel\Actions\Tables\ExportAction;
use pxlrbt\FilamentExcel\Exports\ExcelExport;

            ->headerActions([
                ExportAction::make()
                    ->icon('heroicon-o-arrow-down')
                    ->exports([
                        ExcelExport::make()
                            ->fromTable()
                            ->queue()
                            ->withChunkSize(100),
                    ]),
            ]);


and i get

Method App\Filament\Resources\CompanyResource\Pages\ManageCompanies::getTable does not exist. 
Method App\Filament\Resources\CompanyResource\Pages\ManageCompanies::getTable does not exist. 

when i trigger export action.

i even tried
use pxlrbt\FilamentExcel\Actions\Pages\ExportAction
use pxlrbt\FilamentExcel\Actions\Pages\ExportAction
page action instead of table action, still got same error.

Does anybody encountered same error before? How can i make it work?

Thanks
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

pxlrbt/filament-excel ExportAction
FilamentFFilament / ❓┊help
3y ago
Multi Tenancy Doesn't work With Modal (--simple) Resources
FilamentFFilament / ❓┊help
3y ago
pxlrbt Excel export in filament
FilamentFFilament / ❓┊help
3y ago
Filament modal doesn't work/show
FilamentFFilament / ❓┊help
3y ago