@php $tabs = []; $quantity = min((int) $shortcode->quantity, 20); if ($quantity) { for ($i = 1; $i <= $quantity; $i++) { $tabs[] = [ 'title' => $shortcode->{'title_' . $i}, ]; } } @endphp
@if ($title = $shortcode->title)

{{ $title }}

@endif @if ($description = $shortcode->description)

{{ $description }}

@endif
    @foreach($tabs as $tab)
  • {{ $tab['title'] }}
  • @endforeach
@if ($image = $shortcode->image)
{{ $shortcode->title }}
@endif