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
- How to insert dynamic value to additional column in pivot table in laravel
- How to check relationship is loaded or not in Laravel
- PhpMyAdmin - Error The mysqli extension is missing
- Laravel append URI in route
- Laravel route redirect not working
- Get only 10 records from table in laravel
- Insert data with form validation using ajax in laravel
- Display option of select as selected with blade directive Laravel
- Get Array of IDs from Eloquent Collection
- How to display pivot table column value in laravel
- Save or update pivot table data with additional column in Laravel
- How to add foreign key in laravel using migration
- How to Run CRON Job on LIVE SERVER on Cpanel in Laravel Project
- How to print form data in laravel
- How to get last month records in Laravel
- How to get session in blade Laravel ?
- How to get column names from table in Laravel
- Get domain name in laravel
- How to get all route list
- How to send email in laravel
- How to pass variable from controller to model in Laravel
- How to send email in Laravel 11
- Update last created record in Laravel
- Delete file from amazon s3 bucket using Laravel
- Target class [admin] does not exist.