First view for the return of the repeated expenses.

This commit is contained in:
James Cole
2014-11-22 17:17:28 +01:00
parent ddf9f52737
commit 34454261d2
5 changed files with 39 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
<?php
class RepeatedExpenseController extends BaseController
{
public function __construct() {
View::share('title','Repeated expenses');
View::share('mainTitleIcon','fa-rotate-left');
}
public function index()
{
$subTitle = 'Overview';
return View::make('repeatedexpense.index',compact('subTitle'));
}
}