Sleimanx2\Plastic\Persistence\EloquentPersistence::reindex PHP Method

reindex() public method

Reindex a collection of Models.
public reindex ( array | Collection $collection = [] ) : mixed
$collection array | Illuminate\Support\Collection
return mixed
    public function reindex($collection = [])
    {
        $this->bulkDelete($collection);
        return $this->bulkSave($collection);
    }