Home view gets a better title.

This commit is contained in:
James Cole
2014-09-10 14:39:38 +02:00
parent 867074e7b2
commit d1b97da309
3 changed files with 7 additions and 11 deletions

View File

@@ -80,6 +80,7 @@ class HomeController extends BaseController
}
// build the home screen:
return View::make('index')->with('count', $count)->with('transactions', $transactions);
return View::make('index')->with('count', $count)->with('transactions', $transactions)->with('title', 'Firefly')
->with('subTitle', 'What\'s playing?');
}
}