laravel administrator - 全局操作的自定义查询

时间:2015-01-28 19:00:51

标签: php laravel administrator

我最近开始使用frozennode / Laravel-administrator。 我需要根据字段过滤结果,但不使用过滤器选项。相反,我想根据我的标准创建一个全局自定义操作来过滤。这是我在模型配置中使用的代码......

 /**
 * This is where you can define the model's global custom actions
 */
 'global_actions' => array(
 //Filter
   'filter_approve' => array(
     'title' => 'Mostrar aspirantes sin aprobar',
     'messages' => array(
       'active' => 'Buscando...',
       'success' => 'Listo.',
       'error' => 'Ocurrió un error.',
     ),
     //the Eloquent query builder is passed to the closure
     'action' => function($query){
       //get all the rows for this query
       $query->where('name', 'John Doe');
     }
   ),
 ),

应用程序响应ajax调用但没有任何反应。所以,有一些不好的东西,但我不知道是什么。任何的想法?提前谢谢。

0 个答案:

没有答案