Posts by Daniel Alves • 15 points
2 posts
-
-2
votes1
answer20
viewsQ: I wish that when receiving an email after it passes 24hrs it shows the date and not the time ago as per the image
I’m using the : briannesbitt/Carbon I use this code to render what I wish <?= \Carbon\Carbon::create($mail->created_at)->locale('pt')->diffForHumans(); ?> atrás The same prints equal…
-
-1
votes3
answers3257
viewsA: Problem with Laravel date
I have a function for that, might be useful to someone. function date_fmt_back(?string $date): ?string { if (!$date) { return null; } if (strpos($date, " ")) { $date = explode(" ", $date); return…