Я пытаюсь получить значение из openweathermap Api, но выдает ошибку: пытается получить свойство 'name' не-объекта
Вот мой контроллер
public function getRemoteData(){
$response = Http::get('api.openweathermap.org/data/2.5/weather?q=Pasir Gudang&units=metric');
return view('welcome')->with('response', json_decode($response, true));
}
и здесь мой взгляд прямо сейчас
@if(isset($response))
@foreach($response as $row)
city: {{ $row->name }}
@endforeach
@endif