1In Laravel Application, You can set your Application Time Zone by configuring app.php file in config folder. To change time zone , modify the value of timezone in config/app.php file.
2
3by default ‘timezone’ => ‘UTC’,
4
5/*
6 |--------------------------------------------------------------------------
7 | Application Timezone
8 |--------------------------------------------------------------------------
9 |
10 | Here you may specify the default timezone for your application, which
11 | will be used by the PHP date and date-time functions. We have gone
12 | ahead and set this to a sensible default for you out of the box.
13 |
14 */
15 'timezone' => 'UTC',
16For Ex : i set my application time zone is ‘Asia/Kolkata’
17
18'timezone' => 'Asia/Kolkata',
19List of available timezones can be find in following URL http://php.net/manual/en/timezones.php