We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c31ef27 commit 676f17dCopy full SHA for 676f17d
src/Classes/BaseHelper.php
@@ -345,7 +345,7 @@ public function executeAll($callback = null)
345
}
346
347
/**
348
- * execute query statements without preparing them.
+ * execute query statements without preparing them, this will help us ignore the laravel query preparing.
349
*
350
* @return BaseHelper
351
* @throws \Exception
@@ -358,6 +358,8 @@ public function executeWithoutPrepare()
358
DB::unprepared($this->getQuery());
359
});
360
361
+ $this->setSavedItems($this->getQuery());
362
+
363
return $this;
364
365
} catch (\Exception $e) {
0 commit comments