// /app/Livewire/CustomPage.php
public function getHeaderWidgets(): array
{
return [
ExampleOverview::make([
'foo' => $this->foo ?? [],
])
];
}
public function refresh(): void {
$this->foo[] = 0 // New data chart
$this->dispatch('update-foo');
}
// /app/Livewire/CustomPage.php
public function getHeaderWidgets(): array
{
return [
ExampleOverview::make([
'foo' => $this->foo ?? [],
])
];
}
public function refresh(): void {
$this->foo[] = 0 // New data chart
$this->dispatch('update-foo');
}