From 980c70f700d303ed5875112e77cddc8110c581f4 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 29 Jun 2017 15:18:59 +0300 Subject: [PATCH] Fix for controller stub --- app/Console/Commands/stubs/controller.stub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/stubs/controller.stub b/app/Console/Commands/stubs/controller.stub index d557b844278f..a1c5f9e0a39b 100755 --- a/app/Console/Commands/stubs/controller.stub +++ b/app/Console/Commands/stubs/controller.stub @@ -38,7 +38,7 @@ class $CLASS$ extends BaseController public function datatable(DatatableService $datatableService) { - $search = request()->input('test'); + $search = request()->input('sSearch'); $userId = Auth::user()->filterId(); $datatable = new $STUDLY_NAME$Datatable();