'time-ago']; public function __construct($ago) { $this->ago = (int) $ago; } protected function assemble() { $dateTime = DateFormatter::formatDateTime($this->ago); $this->addAttributes([ 'datetime' => $dateTime, 'title' => $dateTime ]); $this->add(DateFormatter::timeAgo($this->ago)); } }