make($this->wrappedObject->created_at)->toDateTimeString(); } /** * Present formatted date time. * * @return string */ public function updated_at() { return app(DateFactory::class)->make($this->wrappedObject->updated_at)->toDateTimeString(); } /** * Present formatted date time. * * @return string */ public function deleted_at() { return app(DateFactory::class)->make($this->wrappedObject->deleted_at)->toDateTimeString(); } }