I've built an API service/website where you can trigger various notifications to Slack, Twitter, Discord, Telegram etc.... via a HTTP request from your own website/application.
My problem is, the current timezone for my application is 'timezone' => 'Europe/Dublin', , which is fine to a certain extent. One feature of the API service is that I give users the ability to schedule notifications for a later date. This is an issue if someone using the application is outside this timezone.
How are Laravel users overcoming this issue? Are you guys setting the users timezone on the fly, auto detecting it or allowing a user to select their timezone during registration?
Be great to hear how you guys are dealing with timezone issues.
On a side note, anyone interested on playing about with my API application, you can see it here:
JustPush API
Thanks in advance!