renderer = $renderer; $this->productTable = $productTable; } public function render(): string { $count = $this->productTable->count(); return $this->renderer->render('@product/widget', compact('count')); } public function renderMenu(): string { return $this->renderer->render('@product/admin/menu'); } }