Filament Export Action

Hello, I'm using Filament Export Action and I'm using a relationship to get one of the column. This relationship is working great on the list page, but on the export I'm getting Undefined array key "name_of_the _column". Any suggestions?
7 Replies
toeknee
toeknee2d ago
Looks like you have a space name_of_the _column before _column but also, provide the code for the export action.
spacedev
spacedevOP2d ago
Sorry, that was just a typing error This is my headerActions ->headerActions([ ExportAction::make() ->exporter(CdrExporter::class), ]) And this is my Exporter <?php namespace App\Filament\Exports; use App\Models\Cdr; use Carbon\CarbonInterface; use Filament\Facades\Filament; use Filament\Actions\Exports\Exporter; use Filament\Actions\Exports\ExportColumn; use Filament\Actions\Exports\Models\Export; class CdrExporter extends Exporter { protected static ?string $model = Cdr::class; public static function getColumns(): array { return [ ExportColumn::make('sipAccount.username') ]; } public static function getCompletedNotificationBody(Export $export): string { $body = 'Your cdr export has completed and ' . number_format($export->successful_rows) . ' ' . str('row')->plural($export->successful_rows) . ' exported.'; if ($failedRowsCount = $export->getFailedRowsCount()) { $body .= ' ' . number_format($failedRowsCount) . ' ' . str('row')->plural($failedRowsCount) . ' failed to export.'; } return $body; } }
toeknee
toeknee2d ago
I have a feeling this is because of your relationship using camelcase. Can you change the relationship to be:
ExportColumn::make('sip_account.username')
ExportColumn::make('sip_account.username')
spacedev
spacedevOP2d ago
Unfortunately that's not the problem
toeknee
toeknee2d ago
Can you share the exact error
spacedev
spacedevOP2d ago
Undefined array key "sipAccount.username" {"userId":2,"exception":"[object] (ErrorException(code: 0): Undefined array key "sipAccount.username" at /project_name/vendor/filament/actions/src/Exports/Exporter.php:46)
Dan Harrin
Dan Harrin2d ago
Can you open an issue with a simple reproduction repository please

Did you find this page helpful?