Ejemplo n.º 1
0
 public function __construct($date = null)
 {
     if (is_int($date)) {
         $this->_timestamp = $date;
     } else {
         $this->_timestamp = strtotime($date);
     }
     $carbon = Carbon::createFromTimestamp($this->_timestamp);
     parent::__construct($carbon->diffForHumans());
     $this->setAttribute('title', gmdate("Y-m-d H:i:s", $this->_timestamp));
     $this->addClass('f-txt-rel-date');
 }