We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d4357 commit cdccf65Copy full SHA for cdccf65
src/Jobs/ExportJob.php
@@ -43,6 +43,10 @@ public function __construct(
43
44
public function handle(): void
45
{
46
+ collect($this->componentTable->getPublicPropertiesDefinedInComponent())
47
+ ->intersectByKeys($this->properties)
48
+ ->each(fn ($value, $key) => $this->componentTable->{$key} = data_get($this->properties, $key));
49
+
50
$currentHiddenStates = collect($this->columns)
51
->mapWithKeys(fn ($column) => [data_get($column, 'field') => data_get($column, 'hidden')]);
52
0 commit comments