コード例 #1
0
ファイル: helpers.php プロジェクト: zofe/deficient
 function select($query, $parameters = array())
 {
     return Illuminate\Support\Facades\DB::select($query, $parameters);
 }
コード例 #2
0
ファイル: Tblist.php プロジェクト: nerweb/laravel-tblist
 /**
  * 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();
 }