mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-22 06:23:12 -06:00
19 lines
655 B
PHP
19 lines
655 B
PHP
|
<table class="table table-bordered table-striped">
|
||
|
<tr>
|
||
|
<th style="width:25px;"> </th>
|
||
|
<th style="width:30%;">Name</th>
|
||
|
<th>Current balance</th>
|
||
|
</tr>
|
||
|
@foreach($accounts as $account)
|
||
|
<tr>
|
||
|
<td>
|
||
|
@if($account->active == 0)
|
||
|
<span title="This account is inactive." class="glyphicon glyphicon-ban-circle"></span>
|
||
|
@endif
|
||
|
</td>
|
||
|
<td>
|
||
|
<a href="{{route('accounts.show',$account->id)}}" title="Overview for account {{{$account->name}}}">{{{$account->name}}}</a></td>
|
||
|
<td>{{mf($account->balance())}}</td>
|
||
|
</tr>
|
||
|
@endforeach
|
||
|
</table>
|