Answers for "laravel convert date to string"

PHP
0

date to string in php

Date to string

$date = "2021/03/13";
$newdate= date('d M, Y', strtotime($date));
echo $newdate;
Posted by: Guest on March-13-2021
0

blade format date

{!! htmlspecialchars_decode(date('j<\s\up>S</\s\up> F Y', strtotime('21-05-2020'))) !!}
Posted by: Guest on January-21-2021

Code answers related to "laravel convert date to string"

Browse Popular Code Answers by Language