Skip to content

Commit

Permalink
Merge pull request #1706 from Laravel-Backpack/visibleInShow
Browse files Browse the repository at this point in the history
Fixes #1641 - added visibleInShow attribute to columns
  • Loading branch information
tabacitu authored Nov 16, 2018
2 parents cad7f39 + d223ac2 commit 68d17f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/PanelTraits/Read.php
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ public function enableBulkActions()
'visibleInTable' => true,
'visibleInModal' => false,
'visibleInExport' => false,
'visibleInShow' => false,
])->makeFirstColumn();

$this->addColumn([
Expand All @@ -204,6 +205,7 @@ public function enableBulkActions()
'visibleInTabel' => true,
'visibleInModal' => false,
'visibleInExport' => false,
'visibleInShow' => false,
])->makeFirstColumn();
}

Expand Down
5 changes: 5 additions & 0 deletions src/app/Http/Controllers/Operations/Show.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ public function show($id)
if ($column['type'] == 'row_number') {
$this->crud->removeColumn($column['name']);
}

// remove columns that have visibleInShow set as false
if (isset($column['visibleInShow']) && $column['visibleInShow'] == false) {
$this->crud->removeColumn($column['name']);
}
}

// get the info for that entry
Expand Down

0 comments on commit 68d17f3

Please sign in to comment.