where('dist_id', getDistId())->get(); $dist_pages = DistPages::where('status', 1)->where('dist_id', getDistId())->get(); $dist_videos = DistVideo::where('enabled', 1)->where('dist_id', getDistId())->get(); // 返回查询结果 return [ 'dist_products' => $dist_products, 'dist_pages' => $dist_pages, 'dist_videos' => $dist_videos, ]; }); // 创建视图并返回响应 return response()->view('sitemap.index', $sitemapData)->header('Content-Type', 'application/xml'); } }