/**
  * @param ARI     $repository
  * @param Account $account
  *
  * @return \Illuminate\View\View
  */
 public function show(ARI $repository, Account $account)
 {
     $page = intval(Input::get('page')) == 0 ? 1 : intval(Input::get('page'));
     $subTitleIcon = Config::get('firefly.subTitlesByIdentifier.' . $account->accountType->type);
     $what = Config::get('firefly.shortNamesByFullName.' . $account->accountType->type);
     $journals = $repository->getJournals($account, $page);
     $subTitle = trans('firefly.details_for_' . $what, ['name' => $account->name]);
     $journals->setPath('accounts/show/' . $account->id);
     return view('accounts.show', compact('account', 'what', 'subTitleIcon', 'journals', 'subTitle'));
 }