Dividing and Multiplying in views - laravel

前端 未结 1 1718
温柔的废话
温柔的废话 2021-01-25 22:07

In the following html template, I am trying to get the percentage, in the form:

4%

but when I perform multiplication and division, it appears as

相关标签:
1条回答
  • 2021-01-25 22:40

    You must do the calculation inside the brackets:

    {{ number_format($i->count / $total * 100, 2) }}%
    
    0 讨论(0)
提交回复
热议问题