Example #1
0
 /**
  * Set a model instance for the model being queried.
  *
  * @param  \Nova\Database\ORM\Model  $model
  * @return $this
  */
 public function setModel(Model $model)
 {
     $this->model = $model;
     $this->query->from($model->getTable());
     return $this;
 }