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 4f4d2d7 commit ece7acbCopy full SHA for ece7acb
docs/table-features/exporting-data.md
@@ -87,14 +87,14 @@ public function columns(): array
87
88
//Displayed in the grid, but not in the exported file // [!code highlight:1]
89
Column::make('Name', 'name_html_link', 'name')// [!code ++:3]
90
- ->visibleInExport(visible: true)
+ ->visibleInExport(false)
91
->sortable(),
92
93
//Hidden in the grid, but included in the exported file // [!code highlight:1]
94
Column::make('Name', 'name')// [!code ++:4]
95
->searchable()
96
->hidden()// [!code ++]
97
- ->visibleInExport(visible: true),
+ ->visibleInExport(true),
98
];
99
}
100
0 commit comments