mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-22 20:16:22 +00:00
Hide accounts with no activity in budget report.
This commit is contained in:
@@ -60,7 +60,12 @@
|
||||
$accountSums = [];
|
||||
?>
|
||||
@foreach($accounts as $account)
|
||||
<th><a href="{{route('accounts.show',$account->id)}}">{{{$account->name}}}</a></th>
|
||||
<th><a href="{{route('accounts.show',$account->id)}}">{{{$account->name}}}</a>
|
||||
|
||||
@if($account->hide === true)
|
||||
<small>(hidden)</small>
|
||||
@endif
|
||||
</th>
|
||||
<?php
|
||||
$accountSums[$account->id] = 0;
|
||||
?>
|
||||
|
Reference in New Issue
Block a user