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 f0abe2f commit 51709c9Copy full SHA for 51709c9
src/Html/Column.php
@@ -191,6 +191,17 @@ public function visible(bool $flag = true)
191
return $this;
192
}
193
194
+ /**
195
+ * Set column hidden state.
196
+ *
197
+ * @return $this
198
+ * @see https://datatables.net/reference/option/columns.visible
199
+ */
200
+ public function hidden()
201
+ {
202
+ return $this->visible(false);
203
+ }
204
+
205
/**
206
* Append a class name to field.
207
*
0 commit comments