I am trying to implement the csv export but file not created.
I have added the code and migrations and everything goes exactly as the tutorial but the csv file is not generated. In the export table the file is listed but there are 0 successful rows. Also if I change the field in the DecorExporter.php file to one that does not exist no errors are generated. See below. Any advice gratefully received.
public static function getColumns(): array
{
return [
ExportColumn::make('Not-a-field'),
];
}
public static function getColumns(): array
{
return [
ExportColumn::make('Not-a-field'),
];
}

Solution
You probably have a queue driver different from
sync and your queue is not running?