Exemplo n.º 1
0
 protected function timestampsToLocal()
 {
     if (isset($this->created_at)) {
         $this->created_at = Time::gmtToLocal($this->created_at);
     }
     if (isset($this->updated_at)) {
         $this->updated_at = Time::gmtToLocal($this->updated_at);
     }
 }