pluck array in laravel
$users = User::all()->pluck('field_name');
//for keys instead of [User::all()->pluck('id');] use
$user_ids = User::all()->modelKeys();
pluck array in laravel
$users = User::all()->pluck('field_name');
//for keys instead of [User::all()->pluck('id');] use
$user_ids = User::all()->modelKeys();
when to use pluck method in laravel
// QUESTION
When We should use Pluck method in laravel???
// ANSWER
You might often run into a situation where you have to
extract certain values (excluding the keys) from a collection
then you should use pluck().
i.e (when you only need value, not the key)
//Example 1
let we have a list of results and we only need the value of one colum
$attendees = collect([
['name' => 'Bradmen', 'email' => '[email protected]', 'city' => 'London'],
['name' => 'Jhon Doe', 'email' => '[email protected]', 'city' => 'paris'],
['name' => 'Martin', 'email' => '[email protected]', 'city' => 'washington'],
]);
$names = $attendees->pluck('name')
//Reult ['Bradmen', 'Jhon Doe', 'Martin'];
//Example 2
OR You can use like this
$users = User::all();
$usernames = $users->pluck('username');
pluck laravel
$name = DB::table('users')->where('name', 'John')->pluck('name');
laravel pluck
$users = Users::pluck('name','email');
dd($users);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us