
Store logged in user details in session and display in view in laravel
Store logged in user details in session and display in view in laravel
Good day, guys. In this post, we’ll look at how to solve the "Store logged in user details in session and display in view in laravel" programming puzzle.
You can use the session facade in laravel to store the logged-in user details and display in view file using the get method on session.-
Store logged in user details using session and display in view in laravel
<p>Import Auth and Session facade in the controller before definition</p> use Illuminate\Support\Facades\Session; use Illuminate\Support\Facades\Auth; //Code in controller's method After login attempt $user = Auth::user(); Session::put('user', $user); //Display details in view file @php $loggedInUser = Session::get('user') @endphp //Get id of logged in user {{ $loggedInUser->id }}
You can get the logged user details by calling Auth::user() method and you can insert the user's details in the session by calling Session::put() method. Now You can get the user's details in the view file by calling Session::get() method by passing the session name which we have used while creating and get detail by passing the field's name to it.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Laravel
- Class 'Facade\Ignition\IgnitionServiceProvider' not found
- Get today records in Laravel
- Get last record from table in laravel
- Redirect from www to non www in laravel using htaccess
- Conditional where clause in Laravel
- Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails
- How to create event and listener in laravel ?
- Wheredate in laravel not working
- How to return error message from controller to view in laravel
- Laravel insert query not working
- How to include header file in laravel
- How to get all posts which contains comments in laravel
- How to Get records between two dates in Laravel
- Define variable and use in Laravel controller method
- Remove several global scope from query
- Validation for multiple forms on same page in laravel
- OrderBy on Eloquent relationships method in Laravel
- Laravel clone model
- Laravel save object to database
- Fatal error: Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.0.0"
- Class App\Http\Controllers\Admin\UserController Does Not Exist
- How to pass data to partial view file in laravel
- How to get last year records count with month wise in Laravel
- Get last week data in Laravel
- How to get file extension from input type file in laravel