feat(datatable): membuat polling untuk table real-time

This commit is contained in:
Yoga Pangestu 2025-10-29 10:31:11 +07:00
parent d6a0422014
commit c90729508a

View File

@ -57,5 +57,9 @@ public function configure(): void
->setPaginationEnabled(true)
->setDefaultPerPage(25)
->setPerPageAccepted([25, 50, 100, 1000]);
if (property_exists($this, 'refreshTime') && $this->refreshTime !== null) {
$this->setRefreshTime($this->refreshTime);
}
}
}