Skip to content

Commit

Permalink
Remove id from debug action
Browse files Browse the repository at this point in the history
  • Loading branch information
janhenckens committed Dec 17, 2023
1 parent 09e088e commit 07ce7e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/console/controllers/ExportController.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function actionDebug($id): bool
$fields = $export->getHeadings();
$data[] = array_merge($attributes, $fields);

foreach ($query->id(14263)->limit(1)->all() as $element) {
foreach ($query->limit(1)->all() as $element) {
d($element->id);
$values = $element->toArray(array_keys($export->getAttributes()));
// Convert values to strings
Expand Down

0 comments on commit 07ce7e6

Please sign in to comment.