Commit fab42949 authored by sdbondi's avatar sdbondi

Added documentation for where_between suite of methods

Signed-off-by: 's avatarsdbondi <sdbondi@gmail.com>
parent 5f483872
......@@ -114,6 +114,26 @@ The suite of **where_null** methods makes checking for NULL values a piece of ca
->or_where_not_null('updated_at')
->get();
### where\_between, where\_not\_between, or\_where\_between, and or\_where\_not\_between
The suite of **where_between** methods makes checking if values fall BETWEEN a minimum and maximum super easy :
return DB::table('users')->where_between($column, $min, $max)->get();
return DB::table('users')->where_between('updated_at', '2000-10-10', '2012-10-10')->get();
return DB::table('users')->where_not_between('updated_at', '2000-10-10', '2012-01-01')->get();
return DB::table('users')
->where('email', '=', 'example@gmail.com')
->or_where_between('updated_at', '2000-10-10', '2012-01-01')
->get();
return DB::table('users')
->where('email', '=', 'example@gmail.com')
->or_where_not_between('updated_at', '2000-10-10', '2012-01-01')
->get();
<a name="nested-where"></a>
## Nested Where Clauses
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment