コード例 #1
0
ファイル: Dataset.php プロジェクト: binaryk/credite
 public static function Response($config)
 {
     $response = Datatablerows::make();
     $response->source($config['source']);
     $response->draw(\Input::get('draw'));
     return $response->rows();
 }
コード例 #2
0
ファイル: Dataset.php プロジェクト: binaryk/terenuripedia
 public static function Response($config)
 {
     $response = Datatablerows::make();
     $response->source($config['source']);
     $response->draw(\Input::get('draw'));
     if (array_key_exists('other_infos', $config)) {
         $response->other_infos($config['other_infos']);
     }
     return $response->rows();
 }