20 lines
699 B
PHP
20 lines
699 B
PHP
@foreach ($lists as $log)
|
|
<li>
|
|
<div class="accountList-ul-top">
|
|
<div class="accountList-ul-top-time">
|
|
<i class="icon icon-credit"></i>{{ $log->rule->title }}
|
|
</div>
|
|
<span>{{ $log->variable }}</span>
|
|
</div>
|
|
<div class="accountList-ul-cont">
|
|
<div class="accountList-ul-cont-text">
|
|
[<span class="accountList-ul-red">
|
|
<font @if($log->frozen==1) style="color: red" @else style="color:green" @endif> @if($log->frozen==1) 未结算 @else 已结算 @endif</font>
|
|
</span>]
|
|
{{ $log->rule->remark }}
|
|
</div>
|
|
{{ $log->created_at->format('m/d H:i') }}
|
|
</div>
|
|
</li>
|
|
@endforeach
|