@php $limit = (int) $shortcode->limit ?: 4; $posts = match ($shortcode->type) { 'featured' => get_featured_posts($limit), 'popular' => get_popular_posts($limit), 'recent' => get_recent_posts($limit), default => get_latest_posts($limit), }; @endphp

{!! BaseHelper::clean($shortcode->title) !!}