Hi Guys,
Today,i will learn how you can use pluck method in laravel 8. we are show simple example of pluck query builder example in laravel 8. you can table to get array in values using laravel pluck method.
It can get value column and key using pluck method.pluck method to returned collection single column or specify a custom key column following example.
Example: 1Here example single column for the returned Collection
/** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index(){ $ids = \DB::table('posts')->pluck('id'); dd($ids); }Output
array:[ 0 => 1 1 => 2 2 => 3 ]Example: 2
>Here example specify a custom key column for the returned Collection
/** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index(){ $users = User::pluck('name','id'); dd($users); }Output
array:4 [ 1 => "abc" 2 => "xyz" 3 => "mno" ]It will help you...