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 21a9dc4 commit 2d1aee4Copy full SHA for 2d1aee4
src/app/Http/Controllers/Operations/ShowOperation.php
@@ -103,7 +103,7 @@ public function show($id)
103
104
// remove columns that have visibleInShow set as false
105
if (isset($column['visibleInShow'])) {
106
- if ((is_callable($column['visibleInShow']) && $column['visibleInShow']($this->data['entry']) === false) || $column['visibleInShow'] == false) {
+ if ((is_callable($column['visibleInShow']) && $column['visibleInShow']($this->data['entry']) === false) || $column['visibleInShow'] === false) {
107
$this->crud->removeColumn($column['key']);
108
}
109
0 commit comments