(Update) User Profiles

- fix name profil to profile in controllers, images, blades
- refactor user profile blade and UserController profile function
This commit is contained in:
HDVinnie
2018-03-21 18:50:57 -04:00
parent 4ba41b6c7e
commit 77b196a0d8
11 changed files with 63 additions and 66 deletions
@@ -45,7 +45,7 @@ class NoteController extends Controller
// Activity Log
\LogActivity::addToLog("Staff Member {$staff->username} has added a note on {$user->username} account.");
return redirect()->route('profil', ['username' => $user->username, 'id' => $user->id])->with(Toastr::success('Your Staff Note Has Successfully Posted', 'Yay!', ['options']));
return redirect()->route('profile', ['username' => $user->username, 'id' => $user->id])->with(Toastr::success('Your Staff Note Has Successfully Posted', 'Yay!', ['options']));
}
public function getNotes()