In Laravel 10 and 11, setting just timezone
in config/app.php
did not work.
This solution worked for me:
// App/Providers/AppServiceProvider.php
public function boot()
{
date_default_timezone_set(config('app.timezone'));
}
Remeber to alter timezone
in config/app.php