published() ->byCategory('landing-event') ->ordered() ->with('categories') ->limit(2) ->get(); // 查詢最新的文章(新聞和活動,限制5筆) $lastests = Post::query() ->published() ->ordered() ->with('categories') ->limit(5) ->get(); // 取得 KPI 數據(含緩存) $kpiData = $this->kpiService->getFormattedKpiData(); return Inertia::render('home', [ 'landingEvents' => PostResource::collection($landingEvents)->resolve(), 'lastests' => PostResource::collection($lastests)->resolve(), 'kpiData' => $kpiData, ]); } }