D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
vendor
/
rappasoft
/
laravel-livewire-tables
/
src
/
Views
/
Traits
/
Core
/
Filename :
HasVisibility.php
back
Copy
<?php namespace Rappasoft\LaravelLivewireTables\Views\Traits\Core; use Rappasoft\LaravelLivewireTables\Exceptions\DataTableConfigurationException; use Rappasoft\LaravelLivewireTables\Views\{Column,Filter}; trait HasVisibility { protected bool $hiddenFromMenus = false; protected bool $hiddenFromPills = false; public function isHiddenFromMenus(): bool { return $this->hiddenFromMenus === true; } public function isVisibleInMenus(): bool { return $this->hiddenFromMenus === false; } public function isHiddenFromPills(): bool { return $this->hiddenFromPills === true; } public function isVisibleInPills(): bool { return $this->hiddenFromPills === false; } public function hiddenFromMenus(): self { $this->hiddenFromMenus = true; return $this; } public function hiddenFromPills(): self { $this->hiddenFromPills = true; return $this; } public function hiddenFromAll(): self { $this->hiddenFromMenus = true; $this->hiddenFromPills = true; return $this; } }