Skip to content

Commit a22c820

Browse files
committed
update
1 parent eb5a250 commit a22c820

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Http/Controllers/Seller/ProductController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function productListOfTrash(){
4444
public function productListOfRejected(){
4545
$shop = Shop::where('user_id', Auth::guard('api')->user()->id)->first();
4646
$products=Product::where('shop_id',$shop->id)->orderBy("created_at","desc")
47-
->where("isReject",1)
47+
->where("isRejet",1)
4848
->get();
4949

5050
return ProductResource::collection($products);

0 commit comments

Comments
 (0)