This commit is contained in:
James Cole
2017-07-29 14:25:54 +02:00
parent db3b822aef
commit eac9613df7
6 changed files with 12 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ use Illuminate\Support\Collection;
use Log;
use Navigation;
use Preferences;
use Session;
use Steam;
use View;
@@ -317,10 +318,12 @@ class AccountController extends Controller
}
if ($moment !== 'all' && $loop > 1) {
$chartUri = route('chart.account.period', [$account->id, $start->format('Y-m-d')]);
$subTitle = trans(
'firefly.journals_in_period_for_account', ['name' => $account->name, 'start' => $start->formatLocalized($this->monthAndDayFormat),
'end' => $end->formatLocalized($this->monthAndDayFormat)]
);
Session::flash('info', trans('firefly.jump_back_in_time'));
}