Today, we are share with youu how to get current login user details in laravel. we are always need to sometime current login user details like id, name, email, profile picture etc..
So, here we are share with you how to get in to way. you also get current login user details in controller and blade in same way.
[ADDCODE]
Using Helper:
$user = auth()->user();
print($user->id);
print($user->name);
print($user->email);
Using Facade:
$user = Auth::user();
print($user->id);
print($user->name);
print($user->email);
We are hope this is helpfull to you...
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
How to find string length in PHP
Use the PHP strlen() function...Two way Data Binding in Angular 12
When you create a variable or property t...onClick event Handling in React with Example
In this tutorial, we are going to look a...How to count all elements or values in an array in PHP
Use the PHP count() or si...PHP search array key by value in array
Hello guys While working with PHP arr...