Files
wonderful-weather/app/Http/Resources/CityResource.php
foobar 27c1969aaa init
2022-08-21 21:39:06 +02:00

26 lines
631 B
PHP

<?php
namespace App\Http\Resources;
use Illuminate\Http\Resources\Json\JsonResource;
class CityResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
*/
public function toArray($request)
{
return [
'id' => $this->id,
'locationName' => $this->location_name,
'locationCountry' => $this->location_country,
'weatherData' => new WeatherDataCollection($this->weatherData)
];
}
}