Index non défini par ErrorException (Laravel 7 Array Aiders)

use Illuminate\Support\Arr;

$array = ['name' => 'John Doe', 'age' => 17];

$exists = Arr::exists($array, 'name');

// true

$exists = Arr::exists($array, 'salary');

// false
Doubtful Dolphin