@includeIf('layouts.components.inputs_v2', [
'input_type' => 'icon_radio_slider',
'input_id' => "cycle-type",
'input_name' => "type",
'label' => 'Auftrags Typ',
'radio_icon_width' => '70',
'value' => $order->type,
'options' => [
[
'option_value' => 'centric',
'option_label' => 'Labor',
'option_icon_name' => 'dental_labor',
'option_icon_class' => 'mt-3',
'default_checked' => $order->type === 'centric' ? true : false,
],
[
'option_value' => 'scan',
'option_label' => 'Modellanlieferung',
'option_icon_name' => 'dental (3)',
'option_icon_class' => 'mt-3',
'option_icon_width' => '50',
'default_checked' => $order->type === 'scan' ? true : false,
],
[
'option_value' => 'import',
'option_label' => 'Import',
'option_icon_name' => 'dental (1)',
'option_icon_class' => 'mt-3',
'option_icon_width' => '60',
'default_checked' => $order->type === 'import' ? true : false,
],
],
])
@includeIf('layouts.components.inputs_v2', [
'input_type' => 'select',
'input_id' => "cycle-" .$order->cycles()->first()->id ."-kind",
'input_name' => "kind",
'label' => 'Arbeitsart',
'placeholder' => !empty($order->cycles()->first()->type) ? enumGetValue(\App\Enums\OrderTypeDefinition::class, $order->cycles()->first()->type) : '',
'value' => $order->cycles()->first()->kind ,
'options' => $options_calc_table_all_options ?? [],
])
@includeIf('layouts.components.inputs_v2', [
'input_type' => 'textarea',
'text_editor' => true,
'input_id' => "cycle-bemerkungen",
'input_name' => "comment",
'input_class' => 'text-danger',
'label' => 'Bemerkungen',
'input_attr' => 'rows=3',
'value' => $order->comment,
])