dd/app/Http/Controllers/Web/Nasa/V1/Stats/DashboardTotalController.php
2026-06-14 15:46:45 +08:00

37 lines
951 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace App\Http\Controllers\Web\Nasa\V1\Stats;
use Illuminate\Http\Request;
use Illuminate\View\View;
class DashboardTotalController
{
public function index()
{
return view('nasa.v1.stats.dashboard.total');
}
// protected HomeNavService $oNavService;
//
// public function __construct(HomeNavService $oNavService)
// {
// $this->oNavService = $oNavService;
// }
//
// /**
// * 业务方法看好了Controller 里面变得极度纯粹!
// */
// public function oShowTrafficConfig(Request $oRequest): View
// {
// $sCurrentSlug = $oRequest->route()->getName();
//
// // 控制器只抓属于当前业务页面名下的页内 Tab剩下的全局导航它一概不理
// $cPageTabs = $this->oNavService->cGetPageTabs($sCurrentSlug);
//
// return view('home.traffic.config', [
// 'cPageTabs' => $cPageTabs,
// ]);
// }
}