我想在拉拉維爾邊欄選項卡視圖中執(zhí)行減法運算。我知道這是我需要從控制器中完成的錯誤方法,但是有人可以給我適當?shù)慕鉀Q方案,直接在刀片視圖內(nèi)執(zhí)行此操作嗎?注意:我是編程新手。這是我的代碼@if(!empty($receipt_details->total_due))<tr> <th> Customer Old Due </th> <td> {{$receipt_details->all_due}} - {{$receipt_details->total_due}} </td></tr>@endif
2 回答

慕容森
TA貢獻1853條經(jīng)驗 獲得超18個贊
你可以像這個一樣添加它{{}}
{{$receipt_details->all_due - $receipt_details->total_due}}

12345678_0001
TA貢獻1802條經(jīng)驗 獲得超5個贊
執(zhí)行此操作的最佳方法是在數(shù)據(jù)庫查詢本身中執(zhí)行此操作。
下面是原始查詢示例
SELECT all_due, total_due, (all_due-total_due) as old_due FROM reciept_details;
數(shù)據(jù)庫引擎通常經(jīng)過優(yōu)化以執(zhí)行這些類型的操作,這也將節(jié)省應(yīng)用程序服務(wù)器上的一些資源。
- 2 回答
- 0 關(guān)注
- 87 瀏覽
添加回答
舉報
0/150
提交
取消