Laravel provided the following timezone out of the box.
/*
|--------------------------------------------------------------------------
| Application Timezone
|--------------------------------------------------------------------------
|
| Here you may specify the default timezone for your application, which
| will be used by the PHP date and date-time functions. We have gone
| ahead and set this to a sensible default for you out of the box.
|
*/
'timezone' => 'UTC',
Am confused about the right Time Zone to use in my laravel application. My application involves users world wide.
So I don't know if i should use the default Time Zone provided by Laravel or use my country Time Zone which i think is UTC+01:00 and what are the implications of using a wrong Time Zone in web application.