Answers for "laravel get user email"

PHP
3

current loggedin user laravel

$user = auth()->user();  print($user->id);print($user->name);print($user->email);
Posted by: Guest on May-26-2020
8

laravel auth user_id

$userId = Auth::id();
Posted by: Guest on May-12-2020
3

laravel get auth user id

// Get the currently authenticated user's ID...
$id = Auth::id();
Posted by: Guest on March-31-2020
0

laravel using username instead of email

All we need is add a method in app/Http/Controllers/Auth/LoginController.php:

/**
 * Get the login username to be used by the controller.
 *
 * @return string
 */
public function username()
{
    return 'username';
}
Posted by: Guest on August-12-2020

Code answers related to "laravel get user email"

Browse Popular Code Answers by Language