I have done like $file->created_at->format(‘d/m/Y’) in my laravel blade but it’s showing like this:08/08/2022 and I want it like this:4/1/22.
>Solution :
In your format use it as n/j/y for then you will get your format
$file->created_at->format(date('n/j/y'))

