我试图实现减去不同表中的两个整数值,这是我到目前为止所尝试的。
Controller:
$amount = DB::table('shipping_datas')->where('amount')->first();
$payment = DB::table('payments')->where('amount')->first();
$balance = $amount - $payment;
Blade:
{{ $balance }}
先感谢您 :)
慕码人2483693
相关分类