Guest User

Untitled

a guest
Jun 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public function getListById($id)
  2. {
  3. $user = DB::table('dbTestes')->where('id', $id)->get();
  4. return response()->json($user);
  5. }
  6.  
  7.  
  8. //Api route
  9.  
  10. Route::get('/ponto/edit/{id}', 'PontoController@getListById');
Add Comment
Please, Sign In to add comment