I use blade template and I write:
<div class="col-md-2 col-xs-4 text-right" style="padding:0px;">
<h2 class="text-theme" style="font-size:36px !important; margin-top:0px !important;">£{{round($product->price,0)}} <sup style="position: relative;vertical-align: baseline;line-height: 0;font-size: 14px;top: -1.2em;">
{{number_format($product->price - floor($product->price)),2}}
</sup>
</h2>
</div>
and Now I get tc. 96 0
How I can get in <sup>
decimal part and if its 0 to be 00 and if its 5 to be 50 ?