mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
New views coming soon!
This commit is contained in:
parent
9edb9b91b2
commit
7a639a1d6e
@ -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
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user