Skip to content

Instantly share code, notes, and snippets.

@vineeth030
Last active May 29, 2020 05:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vineeth030/51577c553e25c67f7a95db845e1200a3 to your computer and use it in GitHub Desktop.
Save vineeth030/51577c553e25c67f7a95db845e1200a3 to your computer and use it in GitHub Desktop.
<?php
$results = User::where('column_1', '=', 100)
->where('column_2', '>', 200)
->where('column_3', '<', 350)
->where('column_4', '=', 400)
->where('column_5', '>', 150)
->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment