From e50bcffdd774a13e56e795fdaaab657230195c1d Mon Sep 17 00:00:00 2001 From: Ludovic CANDELLIER Date: Fri, 2 Apr 2021 18:22:27 +0200 Subject: [PATCH] Fixes --- .../Controllers/Shop/Admin/PriceGenericCategoryController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/Shop/Admin/PriceGenericCategoryController.php b/app/Http/Controllers/Shop/Admin/PriceGenericCategoryController.php index ae36c435..b1440fe0 100644 --- a/app/Http/Controllers/Shop/Admin/PriceGenericCategoryController.php +++ b/app/Http/Controllers/Shop/Admin/PriceGenericCategoryController.php @@ -10,9 +10,9 @@ use App\DataTables\Shop\PriceGenericCategoriesDataTable; class PriceGenericCategoryController extends Controller { - public function index(PriceGenericsDataTable $dataTable) + public function index(PriceGenericCategoriesDataTable $dataTable) { - return $dataTable->render('Shop.Admin.PriceGenericCategories.list', $data); + return $dataTable->render('Shop.Admin.PriceGenericCategories.list'); } public function create()