I want to show the date and time separately in my Laravel Blade template. For example, I have the post’s published_at time like "2023-10-11 15:30:00". I want to display the date on one line and the time (hours and minutes) on another line. How can I achieve this?
{{ $post->published_at }}
How can I format this to show the date and time separately?