mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
@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
|
|
{!! 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
|
|
{!! Former::textarea($field)
|
|
->rows(1)
|
|
->label(e($label))
|
|
->data_bind(empty($databind) ? '' : $databind)
|
|
->addClass('form-control invoice-item')
|
|
->raw() !!}
|
|
@endif
|
|
@endif
|