From 7a639a1d6ee208c585b54d0cb598a4c736da6a80 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 11 Sep 2014 15:18:32 +0200 Subject: [PATCH] New views coming soon! --- app/controllers/AccountController.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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 *