Skip to content

Commit

Permalink
Fix concatenatio operator
Browse files Browse the repository at this point in the history
  • Loading branch information
momijizukamori committed Aug 3, 2023
1 parent 80bbc57 commit d1afce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/components/filters.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="card-body">
@foreach ($sections as $name => $items)
<div class="input-group pb-2">
<label class="control-label">{{ __($name + '.title')}}</label>
<label class="control-label">{{ __($name . '.title')}}</label>
<select style="width: 100%" v-model="state.categories" :options="categories" label="name" placeholder="Tap to filter" multiple>
@foreach($items as $key => $value)
<option value ="{{$key}}"> {{ $value }}</option>
Expand Down

0 comments on commit d1afce2

Please sign in to comment.