@if (! $asDropdown && $choices)
@php $attributes['class'] = str_replace('form-control', '', $attributes['class']); @endphp @foreach ($choices as $key => $item) @endforeach
@else @php $countSelected = count($value); $placeholder = Arr::get($attributes, 'placeholder') ?: trans('core/base::forms.select_placeholder'); if ($countSelected && $countSelected > 3) { $placeholder = trans('core/base::forms.count_selected', ['count' => $countSelected]); } @endphp
{{ $placeholder }} @if($ajaxUrl)
@foreach($value as $item) @endforeach
@endif
@endif