Skip to content

Instantly share code, notes, and snippets.

@nicolaskempf57
Created February 14, 2021 18:57
Show Gist options
  • Save nicolaskempf57/10780c821eb4c0afda69595dc1debdfa to your computer and use it in GitHub Desktop.
Save nicolaskempf57/10780c821eb4c0afda69595dc1debdfa to your computer and use it in GitHub Desktop.
<?php
DB::select('select * from users where votes = ?', [100]);
DB::select('select * from users where votes = :votes', ['votes' => 1]);
DB::table('users')
->where('votes', '=', 100)
->get();
User::where('votes', '=', 100)
->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment