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