compact(): Undefined variable: operator

前端 未结 4 2276
没有蜡笔的小新
没有蜡笔的小新 2021-02-13 02:22

I\'m getting the following error

  (1/1) ErrorException
  compact(): Undefined variable: operator

This is my line of code

$pos         


        
4条回答
  •  我寻月下人不归
    2021-02-13 03:01

    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

提交回复
热议问题