@if($terms->isNotEmpty())
@if ($active)
@if($widgetData['title'] && Arr::exists($widgetData['title'], LaravelLocalization::getCurrentLocale()))
{{ $widgetData['title'][LaravelLocalization::getCurrentLocale()] }}
@endif
@foreach ($terms as $term)
@if ($widgetData['term_type'] == 'tags')
- {{ $term->name }}
@else
- {{ $term->name }}
@endif
@endforeach
@endif
@endif