DB::table($tableName), fn($x, $y) => throw new \Exception("Not supported")); $this->tableName = $tableName; } public function scrape(int|string $id): array { throw new \Exception("Not supported"); } public function tableName(): string { return $this->tableName; } public function insert(array $attributes): bool { // override the parent method, because these records are not search indexed return $this->queryable(true)->insert($attributes); } public function createEntity() { throw new \Exception("Not supported"); } }