|
@@ -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,
|