* @package product * @link https://www.zentao.net */ namespace zin; if(empty($products)) { div( setClass('table-empty-tip bg-canvas h-40 flex items-center justify-center'), span( setClass('text-gray'), $lang->product->noProduct ), a( setClass('btn primary-pale border-primary'), icon('plus'), set::href(createLink('product', 'create')), $lang->product->create ) ); } else { echo $this->fetch('block', 'dashboard', 'dashboard=product'); helper::end(); } render();