How to do arithmetic operations in Laravel blade view?

I want to do subtraction operation inside Laravel blade view. I knew it was the wrong approach I need to do it from controller,but can someone give me the proper solution to do it directly inside blade view?

Note : I am a newbie to programming.

Here is my code

@if(!empty($receipt_details->total_due))
<tr>
<th>
Customer Old Due
</th>
<td>
-
</td>
</tr>
@endif


from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/374KnOc
via IFTTT

تعليقات

المشاركات الشائعة من هذه المدونة

I am unable to figure out how to create payment collection request, after a form has been submitted in laravel

laravel, mysql transaction not working after failed one time