feat: [dashboard] 주간 날씨 위젯 추가

- 기상청 공공데이터포털 API 연동 (단기+중기 7일 예보)
- WeatherService: 3시간 캐시, SKY/PTY 아이콘 매핑
- HTMX 비동기 로딩 + 스켈레톤 UI
- 오늘 카드 파란색 강조, 요일/날짜/아이콘/기온 표시
This commit is contained in:
김보곤
2026-02-21 13:10:54 +09:00
parent f50e98b802
commit e6f1d6ba46
7 changed files with 473 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Http\Controllers;
use App\Services\WeatherService;
class DashboardWeatherController extends Controller
{
public function weather(WeatherService $weatherService)
{
$forecasts = $weatherService->getWeeklyForecast();
return view('dashboard.partials.weather', compact('forecasts'));
}
}