if (Auth::check()) { // The user is logged in... }
use IlluminateSupportFacadesAuth;
// Retrieve the currently authenticated user...
$user = Auth::user();
// Retrieve the currently authenticated user's ID...
$id = Auth::id();
use IlluminateSupportFacadesAuth;
Auth::login($user);