feat: [china-tech] 중국의 기술도약 > 5대 신흥빅테크 페이지 추가
- BigTechController 생성 (HX-Redirect 패턴 적용) - 5개 탭 UI 구현 (첫 번째 탭: 천텐스, 캄브리콘 AI 반도체 분석) - Chart.js 차트 3개 (주가, 매출 비중, 성능 레이더)
This commit is contained in:
26
app/Http/Controllers/ChinaTech/BigTechController.php
Normal file
26
app/Http/Controllers/ChinaTech/BigTechController.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\ChinaTech;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\Response;
|
||||
use Illuminate\View\View;
|
||||
|
||||
/**
|
||||
* 중국의 기술도약 > 5대 신흥빅테크 컨트롤러
|
||||
*/
|
||||
class BigTechController extends Controller
|
||||
{
|
||||
/**
|
||||
* 5대 신흥빅테크 메인 페이지 (탭 UI)
|
||||
*/
|
||||
public function index(Request $request): View|Response
|
||||
{
|
||||
if ($request->header('HX-Request')) {
|
||||
return response('', 200)->header('HX-Redirect', route('china-tech.big-tech.index'));
|
||||
}
|
||||
|
||||
return view('china-tech.big-tech.index');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user