1, 'price' => 50, 'surge_price' => 33.57, 'trip_time' => '3300', 'distance' => 7900, 'is_holiday' => true, 'day_of_week' => 5, 'weather_conditions' => [ 'temperature' => 30, 'status' => 'cloudy', ], 'created_at' => '2019-10-07T03:29:14.676Z', 'updated_at' => null, ]; return $result; } public function getQuoteEstimates() { $response = array(); // TODO: Get address items from sqeAPI for ($i = 0; $i < 30; $i++) { $response[] = $this->QuoteEstimate(); } return $response; } }