*/ public function toArray(Request $request): array { $city_name = $this->city->name; $company_name = $this->company->name; $items = $this->items; return [ 'id' => $this->id, 'cityName' => $city_name, 'companyName' => $company_name, 'item' => new ItemCollection($items), ]; } }