Errorexception неопределенный индекс (Laravel 7 Matress Helpers)
use Illuminate\Support\Arr;
$array = ['name' => 'John Doe', 'age' => 17];
$exists = Arr::exists($array, 'name');
// true
$exists = Arr::exists($array, 'salary');
// false
Doubtful Dolphin