I have this. Its made in laravel
public function render()
{
$percentageNotAnswered = ($noanswer * 100) / $mytickets;
And also this:
<span class="text-2xl font-semibold text-gray-700"> {{ $noanswer ?? "" }} </span>
<span class="text-sm text-gray-500"> {{ $percentageNotAnswered ?? '' }}% </span>
<div class="text-gray-500">Tickets with no Answer</div>
</div>
And it show the result like 33.333333333333% How can I round to just 2 decimals? Thanks