From 9516f78cc9623788374e9ef29f26f1ac3327a81d Mon Sep 17 00:00:00 2001 From: Flaviano Honorato Date: Sun, 12 Nov 2017 22:28:38 -0300 Subject: [PATCH] Facades Auth Add Facades Auth for users credentials(name and ID). --- index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.html b/index.html index f788f9b..e431979 100755 --- a/index.html +++ b/index.html @@ -818,6 +818,10 @@
Passwords
Auth
// Determine if the current user is authenticated
+Auth::user()->getAuthIdentifier();
+// Get ID of Authenticated User
+Auth::user()->getAuthIdentifierName();
+// Get name of Authenticated User
 Auth::check();
 // Get the currently authenticated user
 Auth::user();