FORMAT VALUE LARAVEL BLADE code example
Example 1: laravel format number blade
//{{--blade file --}}
{{number_format($item->price, 2)}}
//if price = 32
//display 32.00
Example 2: blade format date
{!! htmlspecialchars_decode(date('j<\s\up>S</\s\up> F Y', strtotime('21-05-2020'))) !!}