@foreach ($regions as $current)
@if($current->parent_id)
<li>
<a href="{{ route('cabinet', [$category, $current]) }}">{{ $current->name }}</a>
</li>
@endif
@endforeach
<div id="app">
<h1>Vue Select</h1>
<v-select :options="options"></v-select>
</div>
new Vue({
el: '#app',
data: {
options: [
1,4,5,11
]
}
})