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);
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);
You can also query like this
$products = Product::where('deleted_at', '!=',' ')->get();