*/ public function getTimezones(): array { $tzlist = CarbonTimeZone::listIdentifiers(DateTimeZone::ALL); return $tzlist; } /** * @return array */ public function getSelectOptions(): array { $tzlist = $this->getTimezones(); $options = []; foreach ($tzlist as $tz) { $options[$tz] = $tz; } return $options; } }