Posts by Bruno Batista • 11 points
2 posts
-
0
votes1
answer95
viewsA: Laravel - Bring SELECT Component ALREADY SELECTED when editing
If you are looking for a specific state, use: public function ListaUfEditar($id) { $ListaUf = Estado::find($id); return view('psicologo',compact('ListaUf')); } Or you can pass an array of ids to…
laravelanswered Bruno Batista 11 -
1
votes1
answer155
viewsQ: Void function with Spring returning null at Angular 6
I have the following code to just delete a record in the bank and that should return a result with the status 204-OK. I use Spring Rest on the back and a void method with a…