feat: [dashboard] 주간 날씨 위젯 추가
- 기상청 공공데이터포털 API 연동 (단기+중기 7일 예보) - WeatherService: 3시간 캐시, SKY/PTY 아이콘 매핑 - HTMX 비동기 로딩 + 스켈레톤 UI - 오늘 카드 파란색 강조, 요일/날짜/아이콘/기온 표시
This commit is contained in:
15
app/Http/Controllers/DashboardWeatherController.php
Normal file
15
app/Http/Controllers/DashboardWeatherController.php
Normal 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'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user