Spatie\SearchIndex\SearchIndexHandlers\Elasticsearch::removeFromIndex PHP Method

removeFromIndex() public method

Remove the given subject from the search index.
public removeFromIndex ( Spatie\SearchIndex\Searchable $subject )
$subject Spatie\SearchIndex\Searchable
    public function removeFromIndex(Searchable $subject)
    {
        $this->elasticsearch->delete(['index' => $this->indexName, 'type' => $subject->getSearchableType(), 'id' => $subject->getSearchableId()]);
    }