Files
sam-manage/app/Http/Controllers/DashboardWeatherController.php
김보곤 e6f1d6ba46 feat: [dashboard] 주간 날씨 위젯 추가
- 기상청 공공데이터포털 API 연동 (단기+중기 7일 예보)
- WeatherService: 3시간 캐시, SKY/PTY 아이콘 매핑
- HTMX 비동기 로딩 + 스켈레톤 UI
- 오늘 카드 파란색 강조, 요일/날짜/아이콘/기온 표시
2026-02-21 13:10:54 +09:00

16 lines
335 B
PHP

<?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'));
}
}