mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 23:22:52 +01:00
15 lines
480 B
PHP
15 lines
480 B
PHP
@if (Auth::user()->hasFeature(FEATURE_INVOICE_SETTINGS))
|
|
@if ($customLabel = $account->customLabel($entityType . '1'))
|
|
@include('partials.custom_field', [
|
|
'field' => 'custom_value1',
|
|
'label' => $customLabel
|
|
])
|
|
@endif
|
|
@if ($customLabel = $account->customLabel($entityType . '2'))
|
|
@include('partials.custom_field', [
|
|
'field' => 'custom_value2',
|
|
'label' => $customLabel
|
|
])
|
|
@endif
|
|
@endif
|