PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
rappasoft
/
laravel-livewire-tables
/
src
/
Traits
/
Helpers
/
Editing: RefreshHelpers.php
<?php namespace Rappasoft\LaravelLivewireTables\Traits\Helpers; trait RefreshHelpers { public function hasRefresh(): bool { return $this->refresh !== false; } /** * @return bool|string */ public function getRefreshStatus() { return $this->refresh; } public function getRefreshOptions(): ?string { if ($this->hasRefresh()) { if (is_numeric($this->getRefreshStatus())) { return '.'.$this->getRefreshStatus().'ms'; } switch ($this->getRefreshStatus()) { case 'keep-alive': return '.keep-alive'; case 'visible': return '.visible'; default: return '='.$this->getRefreshStatus(); } } return null; } }
SAVE
CANCEL