@php
$categoryIds = explode(',', Arr::get($attributes, 'category_ids'));
@endphp
{!! Form::customSelect('style', [
'style-1' => __('Style 1'),
'style-2' => __('Style 2'),
], Arr::get($attributes, 'style')) !!}
@php
$fields = [
'title' => [
'title' => __('Title'),
'required' => true
],
'subtitle' => [
'title' => __('Subtitle'),
],
'icon' => [
'type' => 'icon',
'title' => __('Icon'),
],
];
@endphp
{!! Theme::partial('shortcodes.partials.tabs', compact('fields', 'attributes')) !!}