qiushang 1 жил өмнө
parent
commit
a82c6fefdb

+ 1 - 1
app/Http/Home/HelpController.php

@@ -27,7 +27,7 @@ class HelpController extends HttpBaseController
             $productId = $row->product_id;
             unset($row->id);
 
-            $productInfo = DB::table('product')->select(['id', 'title', 'logo'])->where('product_id', $productId)->first();
+            $productInfo = DB::table('product')->select(['id', 'title', 'logo'])->where('id', $productId)->first();
 
             $data[] = [
                 'product' => $productInfo,