mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 23:24:07 -06:00
19 lines
635 B
PHP
19 lines
635 B
PHP
<table class="table table-bordered table-striped">
|
|
<tr>
|
|
<th> </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> |