This commit is contained in:
2025-07-14 12:15:41 +03:00
parent a64ed080bb
commit 273ac72207
974 changed files with 483955 additions and 14 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace kernel\app_modules\user_custom_fields\widgets;
use kernel\app_modules\user_custom_fields\models\CustomField;
use kernel\app_modules\user_custom_fields\services\CustomFieldService;
use kernel\helpers\Debug;
use kernel\Widget;
class UserCustomFieldsInputsWidget extends Widget
{
public function run()
{
$fields = CustomFieldService::getCustomFields();
Debug::dd($fields);
}
}