Excluded more files from the "old" libraries and included new ones instead. This should greatly clean up the code base.

This commit is contained in:
James Cole
2014-11-12 07:31:48 +01:00
parent 5cb9907bf8
commit 638fa9005f
9 changed files with 53 additions and 31 deletions

View File

@@ -23,9 +23,9 @@ class ProfileController extends BaseController
public function index()
{
return View::make('profile.index')
->with('title', 'Profile')
->with('subTitle', Auth::user()->email)
->with('mainTitleIcon', 'fa-user');
->with('title', 'Profile')
->with('subTitle', Auth::user()->email)
->with('mainTitleIcon', 'fa-user');
}
/**
@@ -34,9 +34,9 @@ class ProfileController extends BaseController
public function changePassword()
{
return View::make('profile.change-password')
->with('title', Auth::user()->email)
->with('subTitle', 'Change your password')
->with('mainTitleIcon', 'fa-user');
->with('title', Auth::user()->email)
->with('subTitle', 'Change your password')
->with('mainTitleIcon', 'fa-user');
}
/**