mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-20 11:33:59 +00:00
Some new stuff that really doesn't belong here. I'm not good at this.
This commit is contained in:
@@ -66,7 +66,8 @@ class AccountController extends \BaseController
|
||||
public function edit(Account $account)
|
||||
{
|
||||
$openingBalance = $this->_accounts->openingBalanceTransaction($account);
|
||||
return View::make('accounts.edit')->with('account', $account)->with('openingBalance', $openingBalance)->with('title','Edit account "'.$account->name.'"');
|
||||
return View::make('accounts.edit')->with('account', $account)->with('openingBalance', $openingBalance)
|
||||
->with('title', 'Edit account "' . $account->name . '"');
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -90,7 +91,7 @@ class AccountController extends \BaseController
|
||||
}
|
||||
}
|
||||
|
||||
return View::make('accounts.index')->with('accounts', $set)->with('title','All your accounts');
|
||||
return View::make('accounts.index')->with('accounts', $set)->with('title', 'All your accounts');
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user