- 기상청 공공데이터포털 API 연동 (단기+중기 7일 예보) - WeatherService: 3시간 캐시, SKY/PTY 아이콘 매핑 - HTMX 비동기 로딩 + 스켈레톤 UI - 오늘 카드 파란색 강조, 요일/날짜/아이콘/기온 표시
16 lines
335 B
PHP
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'));
|
|
}
|
|
}
|