DEV Community

Cover image for Shortcut/Shorten To Get Authenticated User ID in Laravel 8
Code And Deploy
Code And Deploy

Posted on

 

Shortcut/Shorten To Get Authenticated User ID in Laravel 8

Originally posted @ https://codeanddeploy.com visit and download the sample code: https://codeanddeploy.com/blog/laravel/shortcutshorten-to-get-authenticated-user-id-in-laravel-8

In this post, I will share a simple example of how to get the user ID of the authenticated user in Laravel 8. Using the auth() helper function or Auth class in Laravel 8 you will easily get the user ID.

The question is how?

First, we know that auth()->user() or \Auth::user() we can access the authenticated user details from the users table.

So getting the user ID you can access it with the sample below:

echo auth()->user()->id;

//or

echo \Auth::user()->id;

Enter fullscreen mode Exit fullscreen mode

But we can shorten it by removing the user() function. Now it will become like this:

echo auth()->id();

//or

echo \Auth::id();
Enter fullscreen mode Exit fullscreen mode

Now the result of the code above is the same but the difference is your code is shorter.

I hope this tutorial can help you. Kindly visit here https://codeanddeploy.com/blog/laravel/shortcutshorten-to-get-authenticated-user-id-in-laravel-8 if you want to download this code.

Happy coding :)

Top comments (0)

Why You Need to Study Javascript Fundamentals

The harsh reality for JS Developers: If you don't study the fundamentals, you'll be just another “Coder”. Top learnings on how to get to the mid/senior level faster as a JavaScript developer by Dragos Nedelcu.