fd22b0bf58
V2 (Laravel re-make)
314 B
314 B
keys()
The keys method returns all of the collection's keys:
const collection = collect([
{
club: 'Liverpool',
nickname: 'The Reds',
},
]);
keys = collection.keys();
// ['club', 'nickname']