@php
$fields = [
'title' => [
'title' => __('Title'),
],
'data' => [
'title' => __('Data'),
],
'color' => [
'type' => 'select',
'title' => __('Color'),
'options' => [
'' => __('Default'),
'bg-brand-2' => __('Yellow'),
'bg-2' => __('Carrot'),
'bg-4' => __('Blue'),
]
],
];
$max = 4;
$current = 4;
@endphp
{!! Theme::partial('shortcodes.partials.tabs', compact('fields', 'attributes', 'max', 'current')) !!}