Harvey Christian Pacleb

Results 1 comments of Harvey Christian Pacleb

As a temporary workaround I would suggest overriding the `getTable` method and adding `DB::raw` to your model. ```php public function getTable() { return DB::raw('"' . ($this->table ?? Str::snake(Str::pluralStudly(class_basename($this)))) . '"');...