Skip to content

Commit

Permalink
revert back to $attributes->merge
Browse files Browse the repository at this point in the history
  • Loading branch information
rawilk committed Feb 24, 2021
1 parent 964633f commit e8f1ee1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/components/inputs/input.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@include('form-components::partials.leading-addons')

<input
{{ $attributes->class($inputClass()) }}
{{ $attributes->merge(['class' => $inputClass()]) }}
{{ $extraAttributes }}

@if ($name) name="{{ $name }}" @endif
Expand Down
2 changes: 1 addition & 1 deletion resources/views/partials/timezone-select-native.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@endif
@endif

{{ $attributes->class($inputClass()) }}
{{ $attributes->merge(['class' => $inputClass()]) }}
{{ $extraAttributes }}
>
{{ $slot }}
Expand Down

0 comments on commit e8f1ee1

Please sign in to comment.