invoiceninja/resources/views/partials/custom_field.blade.php

32 lines
1.1 KiB
PHP
Raw Normal View History

@if (empty($raw))
@if (strpos($label, '|') !== false)
{!! Former::select($field)
->label(Utils::getCustomLabel($label))
->addOption('', '')
->options(Utils::getCustomValues($label))
->data_bind(empty($databind) ? '' : $databind) !!}
@else
2018-04-05 13:12:03 +03:00
{!! Former::textarea($field)
->rows(1)
->label(e($label))
->data_bind(empty($databind) ? '' : $databind) !!}
@endif
@else
@if (strpos($label, '|') !== false)
{!! Former::select($field)
->label(Utils::getCustomLabel($label))
->addOption('', '')
->options(Utils::getCustomValues($label))
->data_bind(empty($databind) ? '' : $databind)
->addClass('form-control invoice-item')
->raw() !!}
@else
2018-04-05 13:12:03 +03:00
{!! Former::textarea($field)
->rows(1)
->label(e($label))
->data_bind(empty($databind) ? '' : $databind)
->addClass('form-control invoice-item')
->raw() !!}
@endif
@endif