Better html title and feed titles.

This commit is contained in:
James Brooks
2014-12-30 22:25:38 +00:00
parent 2086b088b6
commit 0fabb5018f
2 changed files with 6 additions and 3 deletions

View File

@@ -28,6 +28,9 @@ class HomeController extends Controller
*/
public function showIndex()
{
return View::make('index', ['components' => $this->component->all()]);
return View::make('index', [
'components' => $this->component->all(),
'pageTitle' => Setting::get('app_name')
]);
}
}