Esempio n. 1
0
 public function addModel(Model $model, array $data = [])
 {
     $className = get_class($model);
     if ($this->hasModel($className)) {
         throw new Exceptions\ModelAlreadyInConfigException();
     }
     $model = new ElegantModel($className, $data);
     $this->configData['models'][$model->getId()] = $model;
     event('elegant.config.add_model');
 }