Laravel Pluck Method Example | Laravel Pluck()
This is a short guide on laravel pluck example. you will learn laravel pluck method example. it's simple example of laravel pluck query builder. you can understand a concept of laravel db query pluck.
Here, i will show you when we need to use pluck() in laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11. When ever you need to get all ids with name in array for your select dropdown from database in laravel at that time we have to use pluck() of collection.
Here, i will give you two example of laravel eloquent get all ids in array using collection pluck().
so, let's see bellow example:
Example 1:
/**
* Show the application dashboard.
*
* @return \Illuminate\Contracts\Support\Renderable
*/
public function index(){
$ids = Users::pluck('id');
dd($ids);
}
Output:
array:[
0 => 1
1 => 2
2 => 3
]
Example 2:
/**
* Show the application dashboard.
*
* @return \Illuminate\Contracts\Support\Renderable
*/
public function index(){
$names = Users::pluck('name', 'id');
dd($names);
}
Output:
array:4 [
1 => "Hardik"
2 => "Paresh"
3 => "Rajesh"
]
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel Collection Implode Method Example
- Laravel Collection Map Method Example
- Laravel Collection SortBy Tutorial with Examples
- Laravel Collection Merge | How to Merge Two Eloquent Collection?
- Laravel Collection Unique | Remove Duplicates from Collection Laravel
- Laravel Collection Search Method Example
- Laravel Relationship Where Condition Example
- Laravel Eloquent Relationships Tutorial From Scratch
- Laravel One to Many Eloquent Relationship Tutorial
- Laravel One to Many Polymorphic Relationship Tutorial