How to Get Logged in User Data in Laravel 8 Tutorial

Reading Time: 3 minutes
6,068 Views

In laravel if you are developing any application in which authentication is working, then sure you should know how to get user data. This article is going to give an overview of methods by the help of which you can get logged in user details in laravel 8.

Inside this article we will see the available methods to get logged in user data in laravel 8.

We have two available options to get data –

  • Using Auth helper
  • Using Auth Facade

Let’s get started.


Laravel Installation

We will create laravel project using composer. So, please make sure your system should have composer installed. If not, may be this article will help you to Install composer in system.

Here is the command to create a laravel project-

composer create-project --prefer-dist laravel/laravel blog

To start the development server of Laravel –

php artisan serve

URL: http://127.0.0.1:8000

Assuming laravel already installed inside your system.


Working with Laravel Authentication

Here you can find some article links which will guide you about the integration of authentication in laravel 8.

By following these articles, you can create authentication system.


Get Logged In User Data

There are two options available to get logged in user data. These are followings –

  • Auth helper
  • Auth Facade

Auth Helper

You will get current user data using auth().

$user = auth()->user();

By above code, you will get complete user information. If you want to get user id then,

# For User ID

echo $user->id
  
# For name

echo $user->name
  
# For email

echo $user->email

Auth Facade

You will get current user data using Auth Facade. Auth Facade you will find at this location.

use Illuminate\Support\Facades\Auth;

Usage

$user = Auth::user();

By above code, you will get complete user information. If you want to get user id then,

# For User ID

echo $user->id
  
# For name

echo $user->name
  
# For email

echo $user->email

We hope this article helped you to learn about How to Get Logged in User Data in Laravel 8 Tutorial in a very detailed way.

If you liked this article, then please subscribe to our YouTube Channel for PHP & it’s framework, WordPress, Node Js video tutorials. You can also find us on Twitter and Facebook.

Sanjay KumarHello friends, I am Sanjay Kumar a Web Developer by profession. Additionally I'm also a Blogger, Youtuber by Passion. I founded Online Web Tutor and Skillshike platforms. By using these platforms I am sharing the valuable knowledge of Programming, Tips and Tricks, Programming Standards and more what I have with you all. Read more