Merge branch 'akaunting:master' into button-loading
This commit is contained in:
@ -70,7 +70,7 @@
|
||||
@if (! empty($addNew))
|
||||
:add-new="{{ json_encode([
|
||||
'status' => true,
|
||||
'text' => trans('general.title.new', ['type' => $label ?? '']),
|
||||
'text' => isset($attributes['add-new-text']) ? $attributes['add-new-text'] : trans('general.title.new', ['type' => $label ?? '']),
|
||||
'path' => isset($attributes['path']) ? $attributes['path']: false,
|
||||
'type' => isset($attributes['type']) ? $attributes['type'] : 'modal',
|
||||
'field' => [
|
||||
@ -121,6 +121,10 @@
|
||||
clearable
|
||||
@endif
|
||||
|
||||
@if (isset($attributes['no-arrow']))
|
||||
:no-arrow="{{ $attributes['no-arrow'] }}"
|
||||
@endif
|
||||
|
||||
@if (isset($attributes['v-disabled']))
|
||||
:disabled="{{ $attributes['v-disabled'] }}"
|
||||
@endif
|
||||
|
@ -121,6 +121,10 @@
|
||||
clearable
|
||||
@endif
|
||||
|
||||
@if (isset($attributes['no-arrow']))
|
||||
:no-arrow="{{ $attributes['no-arrow'] }}"
|
||||
@endif
|
||||
|
||||
@if (isset($attributes['v-disabled']))
|
||||
:disabled="{{ $attributes['v-disabled'] }}"
|
||||
@endif
|
||||
|
Reference in New Issue
Block a user