Answers for "laravel check collection has key"

PHP
1

laravel check collection has key

$collection = collect(['account_id' => 1, 'product' => 'Desk', 'amount' => 5]);

$collection->has('product');

// true

$collection->has(['product', 'amount']);

// true

$collection->has(['amount', 'price']);

// false
Posted by: Guest on March-01-2021
0

laravel check if collection has value

Auth::user()->ports->contains('port', $request->port);
Posted by: Guest on October-14-2020

Code answers related to "laravel check collection has key"

Browse Popular Code Answers by Language