Exporter failing with undefined index
So I have an export action with some columns working fine:
ExportColumn::make('from.email')->label('From Email'),
ExportColumn::make('to.first_name')->label('To First Name'),
The moment i add a created at:
ExportColumn::make('created_at')
it then fails with "undefined index created_at" when running the exporter.
The created_at column is used on my table resource, i dont have any weird scopes etc. Anyone got any ideas?
0 Replies