We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb5a250 commit a22c820Copy full SHA for a22c820
app/Http/Controllers/Seller/ProductController.php
@@ -44,7 +44,7 @@ public function productListOfTrash(){
44
public function productListOfRejected(){
45
$shop = Shop::where('user_id', Auth::guard('api')->user()->id)->first();
46
$products=Product::where('shop_id',$shop->id)->orderBy("created_at","desc")
47
- ->where("isReject",1)
+ ->where("isRejet",1)
48
->get();
49
50
return ProductResource::collection($products);
0 commit comments