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
Looks like you have a space
name_of_the _column
before _column
but also, provide the code for the export action.
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;
}
}
I have a feeling this is because of your relationship using camelcase. Can you change the relationship to be:
Unfortunately that's not the problem
Can you share the exact error
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)
Can you open an issue with a simple reproduction repository please