/**
  * Apply the rules given for the model.
  */
 protected function applyMassAssignmentRules()
 {
     $this->currentModel->guard($this->modelSettings->getGuarded());
     $this->currentModel->fillable($this->modelSettings->getFillable());
 }