diff --git a/app/controllers/AccountController.php b/app/controllers/AccountController.php index 8b260cea16..f63225f2cb 100644 --- a/app/controllers/AccountController.php +++ b/app/controllers/AccountController.php @@ -32,6 +32,27 @@ class AccountController extends \BaseController return View::make('accounts.create')->with('title', 'Create account'); } + /** + * @return $this + */ + public function asset() { + return View::make('accounts.asset')->with('title','Accounts')->with('subTitle','Asset accounts'); + } + + /** + * @return $this + */ + public function expense() { + return View::make('accounts.expense')->with('title','Accounts')->with('subTitle','Expense accounts'); + } + + /** + * @return $this + */ + public function revenue() { + return View::make('accounts.revenue')->with('title','Accounts')->with('subTitle','Revenue accounts'); + } + /** * @param Account $account *