for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JamesMills\LaravelTimezone\Traits;
trait TimezoneTrait
{
/**
* @return string
*/
protected function getUserTimezone(): string
return (auth()->user()->timezone) ?? config('app.timezone');
}