@if (is_plugin_active('blog')) @php $limit = (int) Arr::get($config, 'limit'); $type = Arr::get($config, 'type'); $posts = match ($type) { 'recent' => get_recent_posts($limit), default => get_popular_posts($limit), }; @endphp @if ($posts->count())