cuonghuynh
11/22/2016 - 3:12 AM

Time ago in words

Time ago in words

<?php

protected $appends = [  
    'created_at_ago',
    'updated_at_ago'
];

public function getCreatedAtAgoAttribute() {  
    return $this->created_at->diffForHumans();
}

public function getUpdatedAtAgoAttribute() {  
    return $this->updated_at->diffForHumans();
}