public function getCollectionName()
 {
     if (is_null($this->collectionName)) {
         $modelName = $this->getModelName();
         $this->collectionName = lcfirst(Helper::strPluralSpanish($modelName));
     }
     return $this->collectionName;
 }