Posts by WitnessTruth • 1,017 points
57 posts
-
5
votes2
answers2110
viewsQ: Laravel - Route with variable
Good morning Sirs. I have a question about the route in the Laravel, I carried through researches trying to find the result but I did not find what I wanted. I need that from the id that is…
-
0
votes1
answer218
viewsQ: Laravel - Does not take the table column
I’m in a quandary at Laravel I can’t fix, and I’ve tried a lot of things, and now I’m stuck with this: echo of a column value of my table in a input in the html. Code in the Controller: public…
-
4
votes2
answers10962
viewsQ: Laravel 5.3 Trying to get Property of non-object
good morning! I followed what is said in this tutorial to fill values in a view: https://www.tutorialspoint.com/laravel/retrieve_records.htm And I did the same scheme on my controller: public…
-
4
votes1
answer575
viewsQ: Laravel Auth::Atempt() always returns false
I tried to authenticate, but it always comes back false in the method Auth::attempt() of Laravel: $prontuario = Input::get('prontuario'); $senha = Input::get('senhas'); if…
-
3
votes2
answers674
viewsQ: How to use "echo" in an Laravel view?
I’m hoping that in mine layout blade echo only if the variable $errors is defined: @section('mensagens') <div class="container"> <div class="row"> <div…
-
5
votes3
answers269
viewsQ: How to format the name of an item in a listbox?
I have a project where I have to send files over the network to a server. When I click on the "add" button a box opens for the person to select the files they want to send and adds to a list that…
-
2
votes1
answer865
viewsQ: Java - Wait for a method to execute next instruction
I’m making a CRUD app on Android for the college project. I’m using a ImageButton for the person to select the image to be saved. The part of selecting the image and storing it is working fine; but…