Ejemplo 1: pluck array en laravel
$users = User::all()->pluck('field_name');
//for keys instead of [User::all()->pluck('id');] use
$user_ids = User::all()->modelKeys();
Ejemplo 2: cuando usar el método pluck en 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');
Ejemplo 3: arrancar laravel
$name = DB::table('users')->where('name', 'John')->pluck('name');
Ejemplo 4: laravel desplumar
$users = Users::pluck('name','email');
dd($users);
Ejemplo 5: laravel array_pluck
$array = [
['developer' => ['id' => 1, 'name' => 'Taylor']],
['developer' => ['id' => 2, 'name' => 'Abigail']],
];
$array = array_pluck($array, 'developer.name');
// ['Taylor', 'Abigail'];
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)