I want to Display all time in same timezone

We are storing all date time values in UTC but need to display all values in a single timezone. The company runs on EST/EDT for simplicity of operations (for main office).
The config app.timezone is UTC but I want entry and display in EST/EDT.
Every user regardless of local timezone.
DO I just add
->timezone('America/New_York')
to every field with
->date()
and
DatePicker::make('created_from')

OR is there a global way to do this?
Was this page helpful?