. */ include_once __DIR__.'/../../../core.php'; $manager_id = filter('manager_id'); $checklists = $structure->checklists()->orderBy('created_at')->get(); $list = []; foreach ($checklists as $checklist) { $list[] = [ 'id' => $checklist->id, 'text' => $checklist->name, ]; } echo '
';