修复 无法判断支付类型的问题

This commit is contained in:
LAE Slave Node 2022-11-17 08:18:39 +08:00
parent ac48b764a4
commit 0dd43dfc4c

View File

@ -23,11 +23,11 @@
<tr>
<td>
@if ($t->type = 'payout')
@if ($t->type === 'payout')
<span class="text-danger">
支出
</span>
@else($t->type = 'payin')
@elseif($t->type === 'income')
<span class="text-success">
收入
</span>