Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jul 14, 2016
1 parent 287cec9 commit 7ecd5ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,8 @@ Of course, you may use a variety of other operators when writing a `where` claus
You may also pass an array of conditions to the `where` function:

$users = DB::table('users')->where([
['status','1'],
['subscribed','<>','1'],
['status', '=', '1'],
['subscribed', '<>', '1'],
])->get();

#### Or Statements
Expand Down

0 comments on commit 7ecd5ae

Please sign in to comment.