|
|
|
|
|
@foreach($assets as $key => $value)
@if($value != 0)
| {{$acct[$key]}} |
|
{{number_format($value)}} |
@endif
@endforeach
| 銀行存款總額 |
|
{{number_format($bank_total)}} |
@foreach($bank as $key => $value)
@if($value != 0)
| |
{{$acct[$key]}} |
{{number_format($value)}} |
|
@endif
@endforeach
|
|
|
|
|
|
|
@foreach($debt as $key => $value)
@if($value != 0)
| {{$acct[$key]}} |
|
{{number_format($value)}} |
@endif
@endforeach
| 負債總額 |
|
{{number_format($debt_total)}} |
@foreach($interest as $key => $value)
@if($value != 0)
| {{$acct[$key]}} |
|
{{number_format($value)}} |
@endif
@endforeach
| 累積結存 |
|
{{number_format($acc)}} |
| 本期結存 |
|
{{number_format($incomestatement)}} |
| 權益總額 |
|
{{number_format($interest_total + $incomestatement + $acc)}} |
|