Level 88
There are multiple ways
Option one: in your view
$user->created_at->diffForHumans();
Option two: accessor
// User.php
public function getCreatedAtAttribute($value)
{
return $value->diffForHumans();
}
Note: Make sure that you add the date field to the
$datesarray in your model!
Source: http://laravel.com/docs/master/eloquent-mutators#date-mutators
1 like