51 lines
1.6 KiB
PHP
51 lines
1.6 KiB
PHP
@stack($name . '_input_start')
|
|
|
|
<akaunting-select-remote
|
|
class="{{ $col }} {{ isset($attributes['required']) ? 'required' : '' }}"
|
|
|
|
@if (!empty($attributes['v-error']))
|
|
:form-classes="[{'has-error': {{ $attributes['v-error'] }} }]"
|
|
@else
|
|
:form-classes="[{'has-error': form.errors.get('{{ $name }}') }]"
|
|
@endif
|
|
|
|
:icon="'{{ $icon }}'"
|
|
:title="'{{ $text }}'"
|
|
:placeholder="'{{ trans('general.form.select.field', ['field' => $text]) }}'"
|
|
:name="'{{ $name }}'"
|
|
:options="{{ json_encode($values) }}"
|
|
:value="'{{ old($name, $selected) }}'"
|
|
|
|
@if (!empty($attributes['v-model']))
|
|
@interface="{{ $attributes['v-model'] . ' = $event' }}"
|
|
@elseif (!empty($attributes['data-field']))
|
|
@interface="{{ 'form.' . $attributes['data-field'] . '.' . $name . ' = $event' }}"
|
|
@else
|
|
@interface="form.{{ $name }} = $event"
|
|
@endif
|
|
|
|
@if (!empty($attributes['change']))
|
|
@change="{{ $attributes['change'] }}($event)"
|
|
@endif
|
|
|
|
@if (isset($attributes['disabled']))
|
|
:disabled="{{ $attributes['disabled'] }}"
|
|
@endif
|
|
|
|
@if(isset($attributes['v-error-message']))
|
|
:form-error="{{ $attributes['v-error-message'] }}"
|
|
@else
|
|
:form-error="form.errors.get('{{ $name }}')"
|
|
@endif
|
|
|
|
:remote-action="'{{ $attributes['remote_action'] }}'"
|
|
:remote-type="'{{ $attributes['remote_type'] }}'"
|
|
:currency-code="{{ $attributes['currecny_code'] }}"
|
|
|
|
:loading-text="'{{ trans('general.loading') }}'"
|
|
:no-data-text="'{{ trans('general.no_data') }}'"
|
|
:no-matching-data-text="'{{ trans('general.no_matching_data') }}'"
|
|
></akaunting-select-remote>
|
|
|
|
@stack($name . '_input_end')
|