diff --git a/resources/views/admin/plans/index.blade.php b/resources/views/admin/plans/index.blade.php
index 2981966..7f4ee70 100644
--- a/resources/views/admin/plans/index.blade.php
+++ b/resources/views/admin/plans/index.blade.php
@@ -161,6 +161,24 @@
查看月付套餐
+
关联订阅总量
diff --git a/tests/Feature/AdminPlanIndexPublishedSummaryCardsAreClickableTest.php b/tests/Feature/AdminPlanIndexPublishedSummaryCardsAreClickableTest.php
new file mode 100644
index 0000000..4ca8aec
--- /dev/null
+++ b/tests/Feature/AdminPlanIndexPublishedSummaryCardsAreClickableTest.php
@@ -0,0 +1,36 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_published_summary_cards_should_link_to_filtered_sets(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $this->get('/admin/plans')
+ ->assertOk()
+ ->assertSee('已发布套餐')
+ ->assertSee('未发布套餐')
+ ->assertSee('published=published', false)
+ ->assertSee('published=unpublished', false)
+ // 口径:页面大量 href 使用 `{!! !!}`,必须确保 back 不会被嵌套回传(防 URL 膨胀/绕过)
+ ->assertDontSee('back=%2Fadmin%2Fplans%3F', false)
+ ->assertDontSee('back=/admin/plans?', false);
+ }
+}