Level 122
https://talltips.novate.co.uk/laravel/php-datetime-formatting-cribsheet
now()->format('l j M')
1 like
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
How do i get the current date in this format
Wednesday 26 Aug
Hey @tomasosho
You could use carbon for this and do something like:-
use Carbon\Carbon;
$d = '2020/08/26'; // Your date from database...
$day = Carbon::parse($d)->format('l m F');
Which will show: Wednesday 08 August
Please or to participate in this conversation.