public function __construct()
{
// Get a user instance for the current user
- $user = Auth::user();
+ $user = auth()->user();
if (!$user) {
$user = User::getDefault();
}
// Share variables with views
- view()->share('signedIn', Auth::check());
+ view()->share('signedIn', auth()->check());
view()->share('currentUser', $user);
// Share variables with controllers
$this->currentUser = $user;
- $this->signedIn = Auth::check();
+ $this->signedIn = auth()->check();
}
/**
]);
$user = $this->user->fill($request->all());
- $user->password = Hash::make($request->get('password'));
+ $user->password = bcrypt($request->get('password'));
$user->save();
$user->attachRoleId($request->get('role'));
if ($request->has('password') && $request->get('password') != '') {
//dd('cat');
$password = $request->get('password');
- $user->password = Hash::make($password);
+ $user->password = bcrypt($password);
}
$user->save();
return redirect('/users');
});
+ // Uploads
Route::post('/upload/image', 'ImageController@upload');
// Users
Route::get('/settings', 'SettingController@index');
Route::post('/settings', 'SettingController@update');
-
});
// Login using social authentication
// Get any attached social accounts or users
$socialAccount = $this->socialAccount->where('driver_id', '=', $socialId)->first();
$user = $this->userRepo->getByEmail($socialUser->getEmail());
- $isLoggedIn = \Auth::check();
- $currentUser = \Auth::user();
+ $isLoggedIn = auth()->check();
+ $currentUser = auth()->user();
// When a user is not logged in but a matching SocialAccount exists,
// Log the user found on the SocialAccount into the application.
private function logUserIn($user)
{
- \Auth::login($user);
+ auth()->login($user);
return redirect('/');
}
*/
public function detachSocialAccount($socialDriver)
{
- \Auth::user()->socialAccounts()->where('driver', '=', $socialDriver)->delete();
+ session();
+ auth()->user()->socialAccounts()->where('driver', '=', $socialDriver)->delete();
\Session::flash('success', $socialDriver . ' account successfully detached');
- return redirect(\Auth::user()->getEditUrl());
+ return redirect(auth()->user()->getEditUrl());
}
}
\ No newline at end of file