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 0356521 commit 30b2a30Copy full SHA for 30b2a30
README.md
@@ -34,9 +34,6 @@ $products = Product::whereMinPrice(5)->get();
34
$orders = Order::where(['status' => 'processing']);
35
$orders = Order::where(['status' => 'processing', 'orderby' => 'id', 'order' => 'asc'])->get();
36
37
-// Order with where
38
-$orders = Order::where('total', '>=', 10)->orderBy('id', 'asc')->get();
39
-
40
// Set Options
41
$orders = Order::options(['status' => 'processing', 'orderby' => 'id', 'order' => 'asc'])->get();
42
0 commit comments