New views coming soon!

This commit is contained in:
James Cole 2014-09-11 15:18:32 +02:00
parent 9edb9b91b2
commit 7a639a1d6e

View File

@ -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
*