stats = $service->collect(); } /** * Wird vom Reverb-Broadcast (fox:broadcast-stats Command) gefeuert. * payload kommt direkt aus SystemStatsBroadcast::broadcastWith(). */ #[On('echo:fox,.stats.system')] public function onStats(array $payload): void { $this->stats = $payload; } public function render() { return view('livewire.widgets.system-stats', ['stats' => $this->stats]); } }