Use timestamp with or without timezone in Postgres?
The Web application will be used in different countries, so I will have to deal with different time zones. The system has data entry of several different objects that have the day and time that the data entered and was changed in the system. This is for the supervisor to look at and check if it was done during business hours or off.
Example
If an object is inserted in the bank at 03:00 AM in Italy, viewing the same object in Brazil should also show 03:00 AM.
To complement the context, the backend is in PHP, Postgres database and on the front we have javascript and jQuery.
How should I save this date in the database, with or without timestamp? Why?