79552852

Date: 2025-04-03 12:02:05
Score: 0.5
Natty:
Report link

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

Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Richard Leishman