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 9.
Inside this article we will see the available methods to get logged in user data in laravel 9.
We have two available options to get data –
- Using Auth helper
- Using Auth Facade
Learn More –
- Laravel 9 How to Override Auth Login Method Tutorial
- Laravel 9 How to Override Auth Register Method
- Laravel 9 Inline Row Edit Using jQuery Editable Plugin
- Laravel 9 How To Seed Database Using Seeder File Tutorial
Let’s get started.
Laravel Installation
Open terminal and run this command to create a laravel project.
composer create-project laravel/laravel myblog
It will create a project folder with name myblog inside your local system.
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 9.
- Laravel 9 Authentication Scaffolding with Breeze Tutorial
- Laravel 9 Authentication using Jetstream with Inertia Js
- Laravel 9 Authentication with Laravel UI Tutorial
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 9 Tutorial in a very detailed way.
Online Web Tutor invites you to try Skillshike! Learn CakePHP, Laravel, CodeIgniter, Node Js, MySQL, Authentication, RESTful Web Services, etc into a depth level. Master the Coding Skills to Become an Expert in PHP Web Development. So, Search your favourite course and enroll now.
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.