accountType->type)) . ' "' . e($account->name) . '"'; return view('accounts.delete', compact('account', 'subTitle')); } /** * @param Account $account * * @return \Illuminate\Http\RedirectResponse */ public function destroy(Account $account, AccountRepositoryInterface $repository) { $type = $account->accountType->type; $typeName = Config::get('firefly.shortNamesByFullName.' . $type); $name = $account->name; $repository->destroy($account); Session::flash('success', 'The ' . e($typeName) . ' account "' . e($name) . '" was deleted.'); return Redirect::route('accounts.index', $typeName); } public function edit(Account $account, AccountRepositoryInterface $repository) { $what = Config::get('firefly.shortNamesByFullName')[$account->accountType->type]; $subTitle = 'Edit ' . strtolower(e($account->accountType->type)) . ' "' . e($account->name) . '"'; $subTitleIcon = Config::get('firefly.subIconsByIdentifier.' . $what); $openingBalance = $repository->openingBalanceTransaction($account); // pre fill some useful values. // the opening balance is tricky: $openingBalanceAmount = null; if ($openingBalance) { $transaction = $openingBalance->transactions()->where('account_id', $account->id)->first(); $openingBalanceAmount = $transaction->amount; } $preFilled = [ 'accountRole' => $account->getMeta('accountRole'), 'openingBalanceDate' => $openingBalance ? $openingBalance->date->format('Y-m-d') : null, 'openingBalance' => $openingBalanceAmount ]; Session::flash('preFilled', $preFilled); return view('accounts.edit', compact('account', 'subTitle', 'subTitleIcon', 'openingBalance', 'what')); } /** * @param string $what * * @return View */ public function index($what = 'default') { $subTitle = Config::get('firefly.subTitlesByIdentifier.' . $what); $subTitleIcon = Config::get('firefly.subIconsByIdentifier.' . $what); $types = Config::get('firefly.accountTypesByIdentifier.' . $what); $accounts = Auth::user()->accounts()->accountTypeIn($types)->get(['accounts.*']); return view('accounts.index', compact('what', 'subTitleIcon', 'subTitle', 'accounts')); } /** * @param Account $account * @param string $range * @param AccountRepositoryInterface $repository * * @return \Illuminate\View\View */ public function show(Account $account, $range = 'session') { /** @var \FireflyIII\Repositories\Account\AccountRepositoryInterface $repository */ $repository = App::make('FireflyIII\Repositories\Account\AccountRepositoryInterface'); $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, $range); $subTitle = 'Details for ' . strtolower(e($account->accountType->type)) . ' "' . e($account->name) . '"'; return view('accounts.show', compact('account', 'what', 'range', 'subTitleIcon', 'journals', 'subTitle')); } /** * @param AccountFormRequest $request * @param AccountRepositoryInterface $repository * * @return \Illuminate\Http\RedirectResponse */ public function store(AccountFormRequest $request, AccountRepositoryInterface $repository) { $accountData = [ 'name' => $request->input('name'), 'accountType' => $request->input('what'), 'active' => true, 'user' => Auth::user()->id, 'accountRole' => $request->input('accountRole'), 'openingBalance' => floatval($request->input('openingBalance')), 'openingBalanceDate' => new Carbon($request->input('openingBalanceDate')), 'openingBalanceCurrency' => intval($request->input('balance_currency_id')), ]; $account = $repository->store($accountData); Session::flash('success', 'New account "' . $account->name . '" stored!'); return Redirect::route('accounts.index', $request->input('what')); } /** * @param Account $account * @param AccountFormRequest $request * @param AccountRepositoryInterface $repository * * @return \Illuminate\Http\RedirectResponse */ public function update(Account $account, AccountFormRequest $request, AccountRepositoryInterface $repository) { $what = Config::get('firefly.shortNamesByFullName.' . $account->accountType->type); $accountData = [ 'name' => $request->input('name'), 'active' => $request->input('active'), 'user' => Auth::user()->id, 'accountRole' => $request->input('accountRole'), 'openingBalance' => floatval($request->input('openingBalance')), 'openingBalanceDate' => new Carbon($request->input('openingBalanceDate')), 'openingBalanceCurrency' => intval($request->input('balance_currency_id')), ]; $repository->update($account, $accountData); Session::flash('success', 'Account "' . $account->name . '" updated.'); return Redirect::route('accounts.index', $what); } }