I have a server in GMT but I want to update those fields ( *created_at* and *updated_at* ) to save timestamps in PST.
I\'ve already did some tests trying to accompli
it's simple,just modify function boot() in AppServiceProvider.php
public function boot() { //set local timezone date_default_timezone_set('Asia/Shanghai'); }