Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Victor Alfonso's avatar

How to convert this date printed in laravel blade

I got this printed date on my laravel blade:

{{$lims_sale_data->created_at }} and his format is like this : 2021-03-23 09:32:37

Obviously, as you can see, it is the timestamp data, and the only thing I would like to know is how to convert this date from the blade view so that its format is dd-mm-yyyy

0 likes
2 replies
MichalOravec's avatar
Level 75
{{ $lims_sale_data->created_at->format('d-m-Y') }}
1 like

Please or to participate in this conversation.