@php
$values = Arr::wrap($values ?? []);
$attributes = (array) $attributes;
$multiple = count($values) > 1;
@endphp
@foreach ($values as $key => $option)
@php
if ($multiple && isset($attributes['id'])) {
$attributes['id'] = $attributes['id'] . '_' . $key;
}
@endphp
{{ $option }}
@endforeach