Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. DB::table('users')
  2. ->where('id', 1)
  3. ->update(array('votes' => 1));
  4.  
  5. DB::table('people')
  6. ->where('id', $people_id)
  7. ->update(array('latitude'=>$latitude,'longitude'=>$longitude));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement