Skip to content

Commit

Permalink
partial form groups dynamic variable
Browse files Browse the repository at this point in the history
  • Loading branch information
cuneytsenturk committed Mar 19, 2020
1 parent 0fe4e14 commit e947cc9
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions resources/views/partials/form/date_group.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ class="{{ $col }}{{ isset($attributes['required']) ? ' required' : '' }}"
@endif

@if (isset($attributes['readonly']))
:readonly="'{{ $attributes['readonly'] }}'"
:readonly="{{ $attributes['readonly'] }}"
@endif

@if (isset($attributes['disabled']))
:disabled="'{{ $attributes['disabled'] }}'"
:disabled="{{ $attributes['disabled'] }}"
@endif

@if (isset($attributes['v-error-message']))
Expand Down
4 changes: 2 additions & 2 deletions resources/views/partials/form/date_time_group.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ class="{{ $col }}{{ isset($attributes['required']) ? ' required' : '' }}"
@endif

@if (isset($attributes['readonly']))
:readonly="'{{ $attributes['readonly'] }}'"
:readonly="{{ $attributes['readonly'] }}"
@endif

@if (isset($attributes['disabled']))
:disabled="'{{ $attributes['disabled'] }}'"
:disabled="{{ $attributes['disabled'] }}"
@endif

@if (isset($attributes['v-error-message']))
Expand Down
2 changes: 1 addition & 1 deletion resources/views/partials/form/money_group.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@endif

@if (isset($attributes['readonly']))
:readonly="'{{ $attributes['readonly'] }}'"
:readonly="{{ $attributes['readonly'] }}"
@endif

@if (isset($attributes['disabled']))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ class="{{ $col }}{{ isset($attributes['required']) ? ' required' : '' }}{{ isset
@endif

@if (isset($attributes['readonly']))
:readonly="'{{ $attributes['readonly'] }}'"
:readonly="{{ $attributes['readonly'] }}"
@endif

@if (isset($attributes['disabled']))
:disabled="'{{ $attributes['disabled'] }}'"
:disabled="{{ $attributes['disabled'] }}"
@endif

@if (isset($attributes['v-error-message']))
Expand Down
4 changes: 2 additions & 2 deletions resources/views/partials/form/multi_select_group.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ class="{{ $col }}{{ isset($attributes['required']) ? ' required' : '' }}{{ isset
@endif

@if (isset($attributes['readonly']))
:readonly="'{{ $attributes['readonly'] }}'"
:readonly="{{ $attributes['readonly'] }}"
@endif

@if (isset($attributes['disabled']))
:disabled="'{{ $attributes['disabled'] }}'"
:disabled="{{ $attributes['disabled'] }}"
@endif

@if (isset($attributes['v-error-message']))
Expand Down
4 changes: 2 additions & 2 deletions resources/views/partials/form/select_add_new_group.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ class="{{ $col }}{{ isset($attributes['required']) ? ' required' : '' }}{{ isset
@endif

@if (isset($attributes['readonly']))
:readonly="'{{ $attributes['readonly'] }}'"
:readonly="{{ $attributes['readonly'] }}"
@endif

@if (isset($attributes['disabled']))
:disabled="'{{ $attributes['disabled'] }}'"
:disabled="{{ $attributes['disabled'] }}"
@endif

@if (isset($attributes['v-error-message']))
Expand Down
4 changes: 2 additions & 2 deletions resources/views/partials/form/select_group.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ class="{{ $col }}{{ isset($attributes['required']) ? ' required' : '' }}{{ isset
@endif

@if (isset($attributes['readonly']))
:readonly="'{{ $attributes['readonly'] }}'"
:readonly="{{ $attributes['readonly'] }}"
@endif

@if (isset($attributes['disabled']))
:disabled="'{{ $attributes['disabled'] }}'"
:disabled="{{ $attributes['disabled'] }}"
@endif

@if (isset($attributes['v-error-message']))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ class="{{ $col }}{{ isset($attributes['required']) ? ' required' : '' }}{{ isset
@endif

@if (isset($attributes['readonly']))
:readonly="'{{ $attributes['readonly'] }}'"
:readonly="{{ $attributes['readonly'] }}"
@endif

@if (isset($attributes['disabled']))
:disabled="'{{ $attributes['disabled'] }}'"
:disabled="{{ $attributes['disabled'] }}"
@endif

@if (isset($attributes['v-error-message']))
Expand Down
4 changes: 2 additions & 2 deletions resources/views/partials/form/select_group_group.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ class="{{ $col }}{{ isset($attributes['required']) ? ' required' : '' }}{{ isset
@endif

@if (isset($attributes['readonly']))
:readonly="'{{ $attributes['readonly'] }}'"
:readonly="{{ $attributes['readonly'] }}"
@endif

@if (isset($attributes['disabled']))
:disabled="'{{ $attributes['disabled'] }}'"
:disabled="{{ $attributes['disabled'] }}"
@endif

@if (isset($attributes['v-error-message']))
Expand Down
4 changes: 2 additions & 2 deletions resources/views/partials/form/select_remote_group.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ class="{{ $col }}{{ isset($attributes['required']) ? ' required' : '' }}{{ isset
@endif

@if (isset($attributes['readonly']))
:readonly="'{{ $attributes['readonly'] }}'"
:readonly="{{ $attributes['readonly'] }}"
@endif

@if (isset($attributes['disabled']))
:disabled="'{{ $attributes['disabled'] }}'"
:disabled="{{ $attributes['disabled'] }}"
@endif

@if (isset($attributes['v-error-message']))
Expand Down
2 changes: 1 addition & 1 deletion resources/views/partials/form/text_editor_group.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class="form-group {{ $col }}{{ isset($attributes['required']) ? ' required' : ''
@endif

@if (isset($attributes['disabled']))
:disabled="'{{ $attributes['disabled'] }}'"
:disabled="{{ $attributes['disabled'] }}"
@endif
></akaunting-html-editor>

Expand Down
4 changes: 2 additions & 2 deletions resources/views/partials/form/time_group.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ class="{{ $col }}{{ isset($attributes['required']) ? ' required' : '' }}"
@endif

@if (isset($attributes['readonly']))
:readonly="'{{ $attributes['readonly'] }}'"
:readonly="{{ $attributes['readonly'] }}"
@endif

@if (isset($attributes['disabled']))
:disabled="'{{ $attributes['disabled'] }}'"
:disabled="{{ $attributes['disabled'] }}"
@endif

@if(isset($attributes['v-error-message']))
Expand Down

0 comments on commit e947cc9

Please sign in to comment.