I\'m getting the following error
(1/1) ErrorException
compact(): Undefined variable: operator
This is my line of code
$pos
Go to your project in vendor\laravel\framework\src\Illuminate\Database\Query\Builder.php
In line number 1337, you can found below code inside the addWhereExistsQuery method
$this->wheres[] = compact('type', 'operator', 'query', 'boolean');
you just remove the 'operator' paramiter
and I hope it will work fine