How to get user information using hootlex/laravel-friendships package in laravel
How to get user information using hootlex/laravel-friendships package in laravel
In this article, we will see how to solve "How to get user information using hootlex/laravel-friendships package in laravel".
You can get the user information using hootlex/laravel-friendships package in laravel. Sometimes we want to access user information like name, image to display in view file in that case it helps you to access users table column data.-
Laravel friendship get user information using hootlex/laravel-friendships
{{ $invitation->sender->name }} //Get all the invitations for friendship from other users using getFriendRequests() method $invitations = Auth::user()->getFriendRequests(); return view('home')->with(['invitations'=>$invitations]); //Display user information in view file //resources\views\home.blade.php @foreach($invitations as $invitation) {{ $invitation->sender->name }} @endforeach
This code snippet helps you to get the user information like user id, name and others field value from users table who send the invitations for connect to logged in user.
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 get data from two tables in laravel
- Get the products list ordered by a user
- Rename Pivot Table in Laravel
- Get all users except the followings users in overtrue laravel-follow
- How to pass query string with pagination in laravel
- How to get session in blade Laravel ?
- How to decrypt laravel password
- Get last year created records in Laravel
- How to get random string in Laravel
- How to get database name in Laravel 9 ?
- Illuminate\Database\QueryException could not find driver
- Method Illuminate\Events\Dispatcher::fire does not exist
- Class App\Http\Controllers\Admin\UserController Does Not Exist
- How to return a column with different name in Laravel
- How to use bootstrap pagination in laravel 8
- Laravel recursive function in controller
- Laravel onclick function not working
- Laravel clone model
- Setup laravel project with docker
- Display data in table using foreach in Laravel
- Laravel append URI in route
- OrderBy on Eloquent relationships method in Laravel
- How to get last record from object collection in laravel
- How to get specific columns using Laravel eloquent methods
- Laravel URL validation not working