Answer the question
In order to leave comments, you need to log in
How to return a formatted date in Laravel orm?
I make an ajax request, and I want to immediately return the formatted date,
in the blade template engine it works like this:
<date>{$item -> created_at -> diffForHumans()}</date>
Answer the question
In order to leave comments, you need to log in
protected $dates = [
'created_at',
];
protected $appends = [
'created_time',
];
public function getCreatedTimeAttribute()
{
return $this->created_at->diffForHumans();
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question