Timezone-List icon indicating copy to clipboard operation
Timezone-List copied to clipboard

A small package use to create a timezone list box in Laravel

Results 2 Timezone-List issues
Sort by recently updated
recently updated
newest added

This PR adds the capability to change the `generalTimezones`. ## Before ```php $timezones = new Timezonelist(); $reflected = new \ReflectionClass($timezones); // @phpstan-ignore-next-line $property = tap($reflected->getProperty('generalTimezones')) ->setAccessible(true) ->setValue($timezones, ['UTC']); return $reflected->getMethod('toArray')->invoke($timezones,...