PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
rappasoft
/
laravel-livewire-tables
/
src
/
Traits
/
Configuration
/
Editing: SecondaryHeaderConfiguration.php
<?php namespace Rappasoft\LaravelLivewireTables\Traits\Configuration; trait SecondaryHeaderConfiguration { public function setSecondaryHeaderStatus(bool $status): self { $this->secondaryHeaderStatus = $status; return $this; } public function setSecondaryHeaderEnabled(): self { $this->setSecondaryHeaderStatus(true); return $this; } public function setSecondaryHeaderDisabled(): self { $this->setSecondaryHeaderStatus(false); return $this; } public function setSecondaryHeaderTrAttributes(callable $callback): self { $this->secondaryHeaderTrAttributesCallback = $callback; return $this; } public function setSecondaryHeaderTdAttributes(callable $callback): self { $this->secondaryHeaderTdAttributesCallback = $callback; return $this; } }
SAVE
CANCEL