예제 #1
0
파일: helpers.php 프로젝트: zofe/deficient
 function select($query, $parameters = array())
 {
     return Illuminate\Support\Facades\DB::select($query, $parameters);
 }
예제 #2
0
 /**
  * This will get the data rows from the database
  * with the all where queries
  *
  * @return void
  */
 private function setResultRows()
 {
     $this->query->select($this->columnsToSelect);
     $this->resultRows = $this->query->get();
 }