コード例 #1
0
ファイル: AdminController.php プロジェクト: gerardo15/Puzzle
 public function getpais()
 {
     $data = Paise::where('pais', 'LIKE', "%" . Input::get("pais") . "%")->where('paisid', 'LIKE', "%" . Input::get("paisid") . "%")->orderby('pais')->get();
     return $data;
 }