Laravel
Multiple Where Clause in Laravel Eloquent
Sometimes you may have multiple conditions while querying using Laravel Eloquent where clause. Here is the syntax how can you do it in a simple manner: As you have seen above the only thing I do is to pass array of conditions. Also, you can have the condition array separately Read more…