. */ include_once __DIR__.'/../../core.php'; use Modules\Impianti\Categoria; $subcategorie = Categoria::where('parent', '=', $id_record)->get(); foreach ($subcategorie as $sub) { $n_impianti = $dbo->fetchNum('SELECT * FROM `my_impianti` WHERE `id_sottocategoria`='.prepare($sub->id).' AND deleted_at IS NULL'); echo ' '.$sub->getTranslation('title').' '.$sub->colore.' '.$sub->nota.' '; }