0

I'm trying to get a list of deleted products, but even though I do have deleted products they not showing up.

Here is my code

$products = Product::whereNotNull('deleted_at')->get();
dd($products);
STA
  • 30,729
  • 8
  • 45
  • 59
Aurilie
  • 189
  • 3
  • 14

1 Answers1

-1

You can also query like this

$products = Product::where('deleted_at', '!=',' ')->get();
Azizullah
  • 140
  • 1
  • 8