Posts by Gabriel Sassaki • 80 points
11 posts
-
0
votes1
answer119
viewsA: Trouble recovering id after search with Laravel
Thanks for trying to help @Joséveiga, I was able to figure out what I was doing wrong. Actually I forgot to put the id in the search select... Stayed like this: //Pesquisar Máquina public function…
-
0
votes1
answer119
viewsQ: Trouble recovering id after search with Laravel
Good morning everyone, I’m having a little problem here on a search of the Laravel, I’ve thought of several things but I couldn’t solve. I have a table rendered in a view and some buttons in this…
-
0
votes1
answer150
viewsA: How to popular an input autocomplete from a select data in the Standard
After a lot of head-breaking, I managed to reach a resolution... Next, my controller I left so: public function serviceSearch(Request $request) { $user = Auth::user(); $userid = $user->id; $setor…
-
0
votes1
answer150
viewsQ: How to popular an input autocomplete from a select data in the Standard
I’m developing an application where I came across a bit complicated, I have a select and would like to change the autocomplete of a input according to the item chosen in this select. Below is the…
-
1
votes1
answer115
viewsA: How to save the ID of a autocomplete field in the table with Laravel?
Thanks guys I managed to settle here: I added two lines to my controller to compare and get the information I needed, my controller now looks like this: public function salvaAtividdade(Request…
-
0
votes1
answer115
viewsQ: How to save the ID of a autocomplete field in the table with Laravel?
Good morning, guys, how are you? I have a problem here, I created a view and a form for this view, in this form have some fields that autocomplete with data from some tables, the question now, is…
-
0
votes1
answer149
viewsA: Doubt in the use of the lavacharts library in Laravel consulted Mysql
Good afternoon @ Crsitiano, I do not know if you have already solved your problem, here I did so: $graf = new Lavacharts; $valor = \Lava::DataTable(); $valores = Produtos::select("nome as 0", "preco…
-
2
votes1
answer58
viewsQ: I can’t get into the foreach of a Lade at Laravel 5.7
I’ve got a little problem I haven’t figured out yet, I’ve got a View and I can’t get into foreach of the same, follows the View: <div class="form-group"> {!! csrf_field() !!} <!--{{…
-
0
votes1
answer1993
viewsQ: What is the reason for the error "Unable to auto-Detect email address (got 'email@dominio.(None)')"?
Good morning guys, all right? I’m testing a networked git server. I created the repository on a network server, the settings are ok of one of the development machines, because I was able to use all…
gitasked Gabriel Sassaki 80 -
1
votes1
answer83
viewsQ: Something wrong with if in Laravel controller
I have a function in a controller of the Laravel, at first it seems to be working well but, when it goes through the part of "if" jumps straight to the "Else", here is the code that is in the…
-
1
votes0
answers70
viewsQ: Integer conversion in Laravel Controller
I have the following data in the controller: $sheets = printerChange::select('folhas'); $sheetsNew = printerChange::select('folhasnew'); $sheetsCompare = (int)$sheetsNew; if(!is_null($sheetsCompare…