1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-12 22:22:32 +01:00
invoiceninja/resources/views/partials/custom_field.blade.php
2018-01-17 12:19:46 +02:00

30 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::text($field)
->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::text($field)
->label(e($label))
->data_bind(empty($databind) ? '' : $databind)
->addClass('form-control invoice-item')
->raw() !!}
@endif
@endif